瀏覽代碼

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

Loading…
取消
儲存