소스 검색

Adds renameLimit value to avoid warnings

main
Eric Amodio 6 년 전
부모
커밋
86f4a42443
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts 파일 보기

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

불러오는 중...
취소
저장