Преглед на файлове

Fixes #683 - avoids conflict w/ log.showSignature

main
Eric Amodio преди 5 години
родител
ревизия
c8dad4d8d8
променени са 1 файла, в които са добавени 6 реда и са изтрити 1 реда
  1. +6
    -1
      src/git/git.ts

+ 6
- 1
src/git/git.ts Целия файл

@ -630,7 +630,11 @@ export class Git {
params.push(options.ref);
}
}
return git<string>({ cwd: repoPath, configs: ['-c', 'diff.renameLimit=0'] }, ...params, '--');
return git<string>(
{ cwd: repoPath, configs: ['-c', 'diff.renameLimit=0', '-c', 'log.showSignature=false'] },
...params,
'--'
);
}
static log_file(
@ -823,6 +827,7 @@ export class Git {
if (Git.isUncommitted(ref)) throw new Error(`ref=${ref} is uncommitted`);
const opts: GitCommandOptions = {
configs: ['-c', 'log.showSignature=false'],
cwd: root,
encoding: options.encoding || 'utf8',
errors: GitErrorHandling.Throw

Зареждане…
Отказ
Запис