mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
optimize<GitFlow>: avoid to open editor for commit message when finish release/hotfix branches
This commit is contained in:
parent
4d5e543527
commit
ebd4c32690
1 changed files with 2 additions and 2 deletions
|
@ -57,10 +57,10 @@ namespace SourceGit.Commands {
|
||||||
Args = $"flow feature finish {option} {name}";
|
Args = $"flow feature finish {option} {name}";
|
||||||
break;
|
break;
|
||||||
case Models.GitFlowBranchType.Release:
|
case Models.GitFlowBranchType.Release:
|
||||||
Args = $"flow release finish {option} {name}";
|
Args = $"flow release finish {option} {name} -m \"RELEASE_DONE\"";
|
||||||
break;
|
break;
|
||||||
case Models.GitFlowBranchType.Hotfix:
|
case Models.GitFlowBranchType.Hotfix:
|
||||||
Args = $"flow hotfix finish {option} {name}";
|
Args = $"flow hotfix finish {option} {name} -m \"HOTFIX_DONE\"";
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in a new issue