We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
git checkout
1 parent 3e530de commit e446e97Copy full SHA for e446e97
src/Commands/Checkout.cs
@@ -13,13 +13,13 @@ public Checkout(string repo)
13
14
public bool Branch(string branch)
15
{
16
- Args = $"checkout --force --progress {branch}";
+ Args = $"checkout --progress {branch}";
17
return Exec();
18
}
19
20
public bool Branch(string branch, string basedOn)
21
22
- Args = $"checkout --force --progress -b {branch} {basedOn}";
+ Args = $"checkout --progress -b {branch} {basedOn}";
23
24
25
0 commit comments