Procházet zdrojové kódy

Fixes delete of remote branches

main
Eric Amodio před 4 roky
rodič
revize
130ca302d9
1 změnil soubory, kde provedl 3 přidání a 1 odebrání
  1. +3
    -1
      src/git/models/repository.ts

+ 3
- 1
src/git/models/repository.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit