Procházet zdrojové kódy

Adds --minimal for changes diffs

main
Eric Amodio před 6 roky
rodič
revize
b17dd483c5
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Zobrazit soubor

@ -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);
}

Načítá se…
Zrušit
Uložit