Parcourir la source

Fixes delete of remote branches

main
Eric Amodio il y a 4 ans
Parent
révision
130ca302d9
1 fichiers modifiés avec 3 ajouts et 1 suppressions
  1. +3
    -1
      src/git/models/repository.ts

+ 3
- 1
src/git/models/repository.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer