Parcourir la source

Fixes issue with branch creation & switching

main
Eric Amodio il y a 5 ans
Parent
révision
d078f80d6f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts Voir le fichier

@ -479,7 +479,7 @@ export namespace Git {
) {
const params = ['checkout'];
if (createBranch) {
params.push('-b', createBranch, '--track', ref, '--');
params.push('-b', createBranch, ref, '--');
} else {
params.push(ref, '--');

Chargement…
Annuler
Enregistrer