| 289 | } |
| 290 | |
| 291 | bool Repository::fileIsIndexed(const std::string& relativePath) |
| 292 | { |
| 293 | return (getFileStatus(relativePath) & GIT_STATUS_WT_NEW) == 0; |
| 294 | } |
| 295 | |
| 296 | bool Repository::fileHasUncommittedChanges(const std::string& relativePath) |
| 297 | { |
no outgoing calls
no test coverage detected