| 414 | } |
| 415 | |
| 416 | bool Repository::mergeIsInProgress() |
| 417 | { |
| 418 | auto state = git_repository_state(_repository); |
| 419 | return state == GIT_REPOSITORY_STATE_MERGE; |
| 420 | } |
| 421 | |
| 422 | void Repository::abortMerge() |
| 423 | { |
no outgoing calls
no test coverage detected