| 810 | } |
| 811 | |
| 812 | VcsJob* GitPlugin::gitStash(const QDir& repository, const QStringList& args, OutputJob::OutputJobVerbosity verbosity) |
| 813 | { |
| 814 | auto* job = new GitJob(repository, this, verbosity); |
| 815 | *job << "git" << "stash" << args; |
| 816 | return job; |
| 817 | } |
| 818 | |
| 819 | VcsJob* GitPlugin::stashList(const QDir& repository, |
| 820 | KDevelop::OutputJob::OutputJobVerbosity verbosity) |
no outgoing calls