[guitool "Start Feature"]
title = Start Feature
cmd = git flow feature start $ARGS
argprompt = Feature Name
[guitool "Finish Feature"]
title = Finish Feature
cmd = git flow feature finish $ARGS
argprompt = Feature Name
[guitool "Start Hotfix"]
title = Start Hotfix
cmd = git flow hotfix start $ARGS
argprompt = Hotfix Name
[guitool "Finish Hotfix"]
title = Finish Hotfix
cmd = git flow hotfix finish $ARGS
argprompt = Hotfix Name
[guitool "Start Release"]
title = Start Release
cmd = git flow release start $ARGS
argprompt = Release Name
[guitool "Finish Release"]
title = Finish Release
cmd = git flow release finish $ARGS
argprompt = Release Name
but first we need to satisfy the dependency on git-flow plugin[1]
some bugs I cannot manage to handle are:
+ as git flow init propmps the user several times for prefix naming configuration, I cannot find the proper mechanism in the guitool api
+ when finishing a release, i got this error (eventhought i have editor setting configured...):
error: Terminal is dumb, but EDITOR unset
Please supply the message using either -m or -F option.
Fatal: Tagging failed. Please run finish again to retry.
+ same on finishing a hotfix.
I hope you can give me some advice on addressing this issues.
Regards,
Antonio.