| 1706 | } |
| 1707 | |
| 1708 | VcsJob* GitPlugin::pull(const KDevelop::VcsLocation& localOrRepoLocationSrc, const QUrl& localRepositoryLocation) |
| 1709 | { |
| 1710 | auto* job = new GitJob(urlDir(localRepositoryLocation), this); |
| 1711 | job->setCommunicationMode(KProcess::MergedChannels); |
| 1712 | *job << "git" << "pull"; |
| 1713 | if(!localOrRepoLocationSrc.localUrl().isEmpty()) |
| 1714 | *job << localOrRepoLocationSrc.localUrl().url(); |
| 1715 | return job; |
| 1716 | } |
| 1717 | |
| 1718 | VcsJob* GitPlugin::push(const QUrl& localRepositoryLocation, const KDevelop::VcsLocation& localOrRepoLocationDst) |
| 1719 | { |
nothing calls this directly
no test coverage detected