| 512 | } |
| 513 | |
| 514 | void VcsPluginHelper::push() |
| 515 | { |
| 516 | Q_D(VcsPluginHelper); |
| 517 | |
| 518 | for (const QUrl& url : std::as_const(d->ctxUrls)) { |
| 519 | VcsJob* job = d->plugin->extension<IDistributedVersionControl>()->push(url, VcsLocation()); |
| 520 | ICore::self()->runController()->registerJob(job); |
| 521 | } |
| 522 | } |
| 523 | |
| 524 | void VcsPluginHelper::pull() |
| 525 | { |
nothing calls this directly
no test coverage detected