| 36 | } |
| 37 | |
| 38 | GitExecResult GitStashes::pop() const |
| 39 | { |
| 40 | QLog_Debug("Git", QString("Poping the stash")); |
| 41 | |
| 42 | const auto cmd = QString("git stash pop"); |
| 43 | |
| 44 | QLog_Trace("Git", QString("Poping the stash: {%1}").arg(cmd)); |
| 45 | |
| 46 | const auto ret = mGitBase->run(cmd); |
| 47 | |
| 48 | return ret; |
| 49 | } |
| 50 | |
| 51 | GitExecResult GitStashes::stash() |
| 52 | { |
no test coverage detected