| 31 | } |
| 32 | |
| 33 | GitExecResult GitRemote::push(bool force) |
| 34 | { |
| 35 | QLog_Debug("Git", QString("Executing push")); |
| 36 | |
| 37 | const auto ret = mGitBase->run(QString("git push ").append(force ? QString("--force") : QString())); |
| 38 | |
| 39 | return ret; |
| 40 | } |
| 41 | |
| 42 | GitExecResult GitRemote::pushCommit(const QString &sha, const QString &remoteBranch) |
| 43 | { |
no test coverage detected