| 364 | } |
| 365 | |
| 366 | VcsJob* GitPlugin::init(const QUrl &directory) |
| 367 | { |
| 368 | auto* job = new GitJob(urlDir(directory), this); |
| 369 | job->setType(VcsJob::Import); |
| 370 | *job << "git" << "init"; |
| 371 | return job; |
| 372 | } |
| 373 | |
| 374 | VcsJob* GitPlugin::createWorkingCopy(const KDevelop::VcsLocation & source, const QUrl& dest, KDevelop::IBasicVersionControl::RecursionMode) |
| 375 | { |