summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-04-20 18:20:10 +1000
committerJesse Duffield <jessedduffield@gmail.com>2020-04-20 18:31:13 +1000
commite9f28855a246f132aac3575eb484c5219abac3e2 (patch)
tree35092c12e36293329e3d6f8b346ce541be719ddf
parent66d7d5f3126def2a6ec26426a65aed13802a5d03 (diff)
add bugfix git flow option
-rw-r--r--pkg/gui/git_flow.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkg/gui/git_flow.go b/pkg/gui/git_flow.go
index ce460edd6..9076ae7f0 100644
--- a/pkg/gui/git_flow.go
+++ b/pkg/gui/git_flow.go
@@ -77,6 +77,10 @@ func (gui *Gui) handleCreateGitFlowMenu(g *gocui.Gui, v *gocui.View) error {
onPress: startHandler("hotfix"),
},
{
+ displayString: "start bugfix",
+ onPress: startHandler("bugfix"),
+ },
+ {
displayString: "start release",
onPress: startHandler("release"),
},