@@ -36,13 +36,13 @@ private GitflowOptionsFactory(){
3636 addOption (TYPE .RELEASE , "Keep branch after performing finish" , "keepBranch" , "-k" );
3737// addOption(TYPE.RELEASE, "Squash release during merge", "squash" , "-S");
3838 addOption (TYPE .RELEASE , "Don't tag release" , "dontTag" , "-n" );
39- addOption (TYPE .RELEASE , "Use custom tag commit message" , "customTagCommitMessage" , null , "Tagging version %name%" ,"Use %name% for the branch name" );
39+ addOption (TYPE .RELEASE , "Use custom tag commit message" , "customTagCommitMessage" , null , DefaultOptions . getOption ( "RELEASE_customTagCommitMessage" ) ,"Use %name% for the branch name" );
4040
4141 addBranchType (TYPE .HOTFIX );
4242 addOption (TYPE .HOTFIX , "Fetch from Origin" , "fetchFromOrigin" , "-F" );
4343 addOption (TYPE .HOTFIX , "Push on finish Hotfix" , "pushOnFinish" , "-p" );
4444 addOption (TYPE .HOTFIX , "Don't tag Hotfix" , "dontTag" , "-n" );
45- addOption (TYPE .HOTFIX , "Use custom hotfix commit message" , "customHotfixCommitMessage" , null , "Tagging hotfix %name%" ,"Use %name% for the branch name" );
45+ addOption (TYPE .HOTFIX , "Use custom hotfix commit message" , "customHotfixCommitMessage" , null , DefaultOptions . getOption ( "HOTFIX_customHotfixCommitMessage" ) ,"Use %name% for the branch name" );
4646 }
4747
4848 private void addBranchType (Enum <TYPE > branchType ){
0 commit comments