| 1503 | } |
| 1504 | |
| 1505 | DVcsJob* GitPlugin::gitRevParse(const QString &repository, const QStringList &args, |
| 1506 | KDevelop::OutputJob::OutputJobVerbosity verbosity) |
| 1507 | { |
| 1508 | auto* job = new GitJob(QDir(repository), this, verbosity); |
| 1509 | *job << "git" << "rev-parse" << args; |
| 1510 | |
| 1511 | return job; |
| 1512 | } |
| 1513 | |
| 1514 | DVcsJob* GitPlugin::gitRevList(const QString& directory, const QStringList& args) |
| 1515 | { |