| 136 | } |
| 137 | |
| 138 | void GitClientPrivate::blameFile(const QString &workspace, const QString &filePath) |
| 139 | { |
| 140 | auto cmd = readyWork(GitBlame, workspace, filePath); |
| 141 | QStringList arguments = { "blame", "--root", |
| 142 | "--date=short", "-w", |
| 143 | "--", filePath }; |
| 144 | |
| 145 | cmd->addJob(GitBinaryPath, arguments); |
| 146 | cmd->start(); |
| 147 | } |
| 148 | |
| 149 | void GitClientPrivate::gitDiff(const QString &workspace, const QString &filePath, bool isProject) |
| 150 | { |
no test coverage detected