| 332 | } |
| 333 | |
| 334 | void VcsStatus::analyseRemoteStatus(std::shared_ptr<git::Repository> repository) |
| 335 | { |
| 336 | try |
| 337 | { |
| 338 | setRemoteStatus(git::analyseRemoteStatus(repository)); |
| 339 | } |
| 340 | catch (git::GitException& ex) |
| 341 | { |
| 342 | setRemoteStatus(git::RemoteStatus{ 0, 0, ex.what() }); |
| 343 | } |
| 344 | } |
| 345 | |
| 346 | void VcsStatus::performSync(std::shared_ptr<git::Repository> repository) |
| 347 | { |
nothing calls this directly
no test coverage detected