Explorar el Código

Adds renameLimit value to avoid warnings

main
Eric Amodio hace 6 años
padre
commit
86f4a42443
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Ver fichero

@ -451,7 +451,7 @@ export class Git {
}
static log(repoPath: string, options: { maxCount?: number; ref?: string; reverse?: boolean }) {
const params = [...defaultLogParams, '--full-history', '-M', '-m'];
const params = ['-c', 'diff.renameLimit=0', ...defaultLogParams, '--full-history', '-M', '-m'];
if (options.maxCount && !options.reverse) {
params.push(`-n${options.maxCount}`);
}

Cargando…
Cancelar
Guardar