瀏覽代碼

Ensures that log --all only gets a single worktree

main
Eric Amodio 2 年之前
父節點
當前提交
8674db3d1c
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      src/env/node/git/git.ts

+ 2
- 2
src/env/node/git/git.ts 查看文件

@ -755,7 +755,7 @@ export class Git {
}
if (all) {
params.push('--all');
params.push('--all', '--single-worktree');
}
if (ref && !GitRevision.isUncommittedStaged(ref)) {
@ -834,7 +834,7 @@ export class Git {
}
if (all) {
params.push('--all');
params.push('--all', '--single-worktree');
}
// Can't allow rename detection (`--follow`) if `all` or a `startLine` is specified

Loading…
取消
儲存