浏览代码

Adds --minimal for changes diffs

main
Eric Amodio 6 年前
父节点
当前提交
b17dd483c5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts 查看文件

@ -350,7 +350,7 @@ export class Git {
}
static diff(repoPath: string, fileName: string, sha1?: string, sha2?: string, options: { encoding?: string } = {}) {
const params = ['diff', '--diff-filter=M', '-M', '--no-ext-diff'];
const params = ['diff', '--diff-filter=M', '-M', '--no-ext-diff', '--minimal'];
if (sha1) {
params.push(Git.isStagedUncommitted(sha1) ? '--staged' : sha1);
}

正在加载...
取消
保存