Explorar el Código

Fixes delete of remote branches

main
Eric Amodio hace 4 años
padre
commit
130ca302d9
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. +3
    -1
      src/git/models/repository.ts

+ 3
- 1
src/git/models/repository.ts Ver fichero

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

Cargando…
Cancelar
Guardar