소스 검색

Filters main worktree from delete

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

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

@ -545,7 +545,7 @@ export class WorktreeGitCommand extends QuickCommand {
context.title = getTitle('Worktrees', state.subcommand);
const result = yield* pickWorktreesStep(state, context, {
filter: wt => !wt.opened, // Can't delete an open worktree
filter: wt => wt.main || !wt.opened, // Can't delete the main or opened worktree
includeStatus: true,
picked: state.uris?.map(uri => uri.toString()),
placeholder: 'Choose worktrees to delete',

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