enhance: use -B instead of -b to support creating worktree with existed branch (#205)

This commit is contained in:
leo 2024-06-28 09:37:43 +08:00
parent ac00d1a221
commit 8dfe882455
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View file

@ -70,7 +70,7 @@ namespace SourceGit.Commands
Args += "--track ";
if (!string.IsNullOrEmpty(name))
Args += $"-b {name} ";
Args += $"-B {name} ";
Args += $"\"{fullpath}\" ";