소스 검색

Fixes delete of remote branches

main
Eric Amodio 4 년 전
부모
커밋
130ca302d9
1개의 변경된 파일3개의 추가작업 그리고 1개의 파일을 삭제
  1. +3
    -1
      src/git/models/repository.ts

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

@ -294,7 +294,9 @@ export class Repository implements Disposable {
for (const branch of remoteBranches) {
this.runTerminalCommand(
'push',
`${GitBranch.getRemote(branch.name)} :${GitReference.getNameWithoutRemote(branch)}`,
'-d',
GitBranch.getRemote(branch.name),
GitReference.getNameWithoutRemote(branch),
);
}
}

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