| 67 | } |
| 68 | |
| 69 | void Index::resolveByUsingOurs(const std::string& relativePath) |
| 70 | { |
| 71 | auto error = git_index_add_bypath(_index, relativePath.c_str()); |
| 72 | GitException::ThrowOnError(error); |
| 73 | } |
| 74 | |
| 75 | bool Index::fileIsConflicted(const std::string& relativePath) |
| 76 | { |
no test coverage detected