Parcourir la source

Adds renameLimit value to avoid warnings

main
Eric Amodio il y a 6 ans
Parent
révision
86f4a42443
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer