| 1896 | } |
| 1897 | |
| 1898 | CheckInRepositoryJob* GitPlugin::isInRepository(KTextEditor::Document* document) |
| 1899 | { |
| 1900 | CheckInRepositoryJob* job = new GitPluginCheckInRepositoryJob(document, repositoryRoot(document->url()).path()); |
| 1901 | job->start(); |
| 1902 | return job; |
| 1903 | } |
| 1904 | |
| 1905 | DVcsJob* GitPlugin::setConfigOption(const QUrl& repository, const QString& key, const QString& value, bool global) |
| 1906 | { |
no test coverage detected