mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 11:44:59 +00:00
fix: remove testing code for git checkout
command
Signed-off-by: leo <longshuang@msn.cn>
This commit is contained in:
parent
3e530de9cc
commit
e446e97f28
1 changed files with 2 additions and 2 deletions
|
@ -13,13 +13,13 @@ namespace SourceGit.Commands
|
|||
|
||||
public bool Branch(string branch)
|
||||
{
|
||||
Args = $"checkout --force --progress {branch}";
|
||||
Args = $"checkout --progress {branch}";
|
||||
return Exec();
|
||||
}
|
||||
|
||||
public bool Branch(string branch, string basedOn)
|
||||
{
|
||||
Args = $"checkout --force --progress -b {branch} {basedOn}";
|
||||
Args = $"checkout --progress -b {branch} {basedOn}";
|
||||
return Exec();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue