@@ -181,7 +181,7 @@ git flow feature start [-h] [-F] <name> [<base>]
181181Start new feature <name>, optionally basing it on <base> instead of <develop>
182182--
183183h,help! Show this help
184- showcommands! Show git commands while executing them
184+ q, showcommands! Show git commands while executing them
185185F,[no]fetch Fetch from origin before performing local operation
186186"
187187 local base
@@ -241,32 +241,33 @@ git flow feature finish [-h] [-F] [-r] [-p] [-k] [-D] [-S] [--no-ff] <name|namep
241241Finish feature <name>
242242--
243243h,help! Show this help
244- showcommands! Show git commands while executing them
244+ q, showcommands! Show git commands while executing them
245245F,[no]fetch Fetch from origin before performing finish
246246r,[no]rebase Rebase before merging
247247p,[no]preserve-merges Preserve merges while rebasing
248- [no]push Push to origin after performing finish
248+ P, [no]push Push to origin after performing finish
249249k,[no]keep Keep branch after performing finish
250- keepremote! Keep the remote branch
251- keeplocal! Keep the local branch
250+ R, keepremote! Keep the remote branch
251+ L, keeplocal! Keep the local branch
252252D,[no]force_delete Force delete feature branch after finish
253253S,[no]squash Squash feature during merge
254- no-ff! Never fast-forward during the merge
254+ s,[no]squash_info Add branch info during squash
255+ m,no-ff! Never fast-forward during the merge
255256"
256257 local finish_base
257258
258259 # Define flags
259260 DEFINE_boolean ' fetch' false " fetch from $ORIGIN before performing finish" F
260261 DEFINE_boolean ' rebase' false " rebase before merging" r
261262 DEFINE_boolean ' preserve-merges' false ' try to recreate merges while rebasing' p
262- DEFINE_boolean ' push' false " push to $ORIGIN after performing finish"
263+ DEFINE_boolean ' push' false " push to $ORIGIN after performing finish" P
263264 DEFINE_boolean ' keep' false " keep branch after performing finish" k
264- DEFINE_boolean ' keepremote' false " keep the remote branch"
265- DEFINE_boolean ' keeplocal' false " keep the local branch"
265+ DEFINE_boolean ' keepremote' false " keep the remote branch" R
266+ DEFINE_boolean ' keeplocal' false " keep the local branch" L
266267 DEFINE_boolean ' force_delete' false " force delete feature branch after finish" D
267268 DEFINE_boolean ' squash' false " squash feature during merge" S
268- DEFINE_boolean ' squash-info' false " add branch info during squash"
269- DEFINE_boolean ' no-ff!' false " Don't fast-forward ever during merge "
269+ DEFINE_boolean ' squash-info' false " add branch info during squash" s
270+ DEFINE_boolean ' no-ff!' false " Don't fast-forward ever during merge " m
270271
271272 # Override defaults with values from config
272273 gitflow_override_flag_boolean " feature.finish.fetch" " fetch"
@@ -507,7 +508,7 @@ Publish feature branch <name> on $ORIGIN.
507508When <name> is omitted the current branch is used, but only if it's a feature branch.
508509--
509510h,help! Show this help
510- showcommands! Show git commands while executing them
511+ q, showcommands! Show git commands while executing them
511512"
512513 # Parse arguments
513514 parse_args " $@ "
@@ -548,7 +549,7 @@ git flow feature track [-h] <name>
548549Start tracking feature <name> that is shared on $ORIGIN
549550--
550551h,help! Show this help
551- showcommands! Show git commands while executing them
552+ q, showcommands! Show git commands while executing them
552553"
553554 # Parse arguments
554555 parse_args " $@ "
@@ -583,7 +584,7 @@ git flow feature diff [-h] [<name|nameprefix>]
583584Show all changes in <name> that are not in the base
584585--
585586h,help! Show this help
586- showcommands! Show git commands while executing them
587+ q, showcommands! Show git commands while executing them
587588"
588589 local base
589590
@@ -608,7 +609,7 @@ git flow feature checkout [-h] [<name|nameprefix>]
608609Switch to feature branch <name>
609610--
610611h,help! Show this help
611- showcommands! Show git commands while executing them
612+ q, showcommands! Show git commands while executing them
612613"
613614 # Parse arguments
614615 parse_args " $@ "
@@ -632,7 +633,7 @@ git flow feature rebase [-h] [-i] [-p] [<name|nameprefix>]
632633Rebase <name> on <base_branch>
633634--
634635h,help! Show this help
635- showcommands! Show git commands while executing them
636+ q, showcommands! Show git commands while executing them
636637i,[no]interactive Do an interactive rebase
637638p,[no]preserve-merges Preserve merges
638639"
@@ -696,7 +697,7 @@ git flow feature pull [-h] <remote> [<name>]
696697Pull feature <name> from <remote>
697698--
698699h,help! Show this help
699- showcommands! Show git commands while executing them
700+ q, showcommands! Show git commands while executing them
700701"
701702 local current_branch
702703
@@ -765,7 +766,7 @@ git flow feature delete [-h] [-f] [-r] <name>
765766Delete a given feature branch
766767--
767768h,help! Show this help
768- showcommands! Show git commands while executing them
769+ q, showcommands! Show git commands while executing them
769770f,[no]force Force deletion
770771r,[no]remote Delete remote branch
771772"
@@ -837,7 +838,7 @@ git flow feature rename <new_name> [<new_name>]
837838Rename a given feature branch
838839--
839840h,help! Show this help
840- showcommands! Show git commands while executing them
841+ q, showcommands! Show git commands while executing them
841842"
842843 gitflow_rename_branch " $@ "
843844}
0 commit comments