Skip to content

Commit d078f80

Browse files
committed
Fixes issue with branch creation & switching
1 parent db66799 commit d078f80

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/git/git.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -479,7 +479,7 @@ export namespace Git {
479479
) {
480480
const params = ['checkout'];
481481
if (createBranch) {
482-
params.push('-b', createBranch, '--track', ref, '--');
482+
params.push('-b', createBranch, ref, '--');
483483
} else {
484484
params.push(ref, '--');
485485

0 commit comments

Comments
 (0)