@@ -181,7 +181,7 @@ git flow feature start [-h] [-F] <name> [<base>]
181
181
Start new feature <name>, optionally basing it on <base> instead of <develop>
182
182
--
183
183
h,help! Show this help
184
- showcommands! Show git commands while executing them
184
+ q, showcommands! Show git commands while executing them
185
185
F,[no]fetch Fetch from origin before performing local operation
186
186
"
187
187
local base
@@ -241,32 +241,33 @@ git flow feature finish [-h] [-F] [-r] [-p] [-k] [-D] [-S] [--no-ff] <name|namep
241
241
Finish feature <name>
242
242
--
243
243
h,help! Show this help
244
- showcommands! Show git commands while executing them
244
+ q, showcommands! Show git commands while executing them
245
245
F,[no]fetch Fetch from origin before performing finish
246
246
r,[no]rebase Rebase before merging
247
247
p,[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
249
249
k,[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
252
252
D,[no]force_delete Force delete feature branch after finish
253
253
S,[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
255
256
"
256
257
local finish_base
257
258
258
259
# Define flags
259
260
DEFINE_boolean ' fetch' false " fetch from $ORIGIN before performing finish" F
260
261
DEFINE_boolean ' rebase' false " rebase before merging" r
261
262
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
263
264
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
266
267
DEFINE_boolean ' force_delete' false " force delete feature branch after finish" D
267
268
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
270
271
271
272
# Override defaults with values from config
272
273
gitflow_override_flag_boolean " feature.finish.fetch" " fetch"
@@ -507,7 +508,7 @@ Publish feature branch <name> on $ORIGIN.
507
508
When <name> is omitted the current branch is used, but only if it's a feature branch.
508
509
--
509
510
h,help! Show this help
510
- showcommands! Show git commands while executing them
511
+ q, showcommands! Show git commands while executing them
511
512
"
512
513
# Parse arguments
513
514
parse_args " $@ "
@@ -548,7 +549,7 @@ git flow feature track [-h] <name>
548
549
Start tracking feature <name> that is shared on $ORIGIN
549
550
--
550
551
h,help! Show this help
551
- showcommands! Show git commands while executing them
552
+ q, showcommands! Show git commands while executing them
552
553
"
553
554
# Parse arguments
554
555
parse_args " $@ "
@@ -583,7 +584,7 @@ git flow feature diff [-h] [<name|nameprefix>]
583
584
Show all changes in <name> that are not in the base
584
585
--
585
586
h,help! Show this help
586
- showcommands! Show git commands while executing them
587
+ q, showcommands! Show git commands while executing them
587
588
"
588
589
local base
589
590
@@ -608,7 +609,7 @@ git flow feature checkout [-h] [<name|nameprefix>]
608
609
Switch to feature branch <name>
609
610
--
610
611
h,help! Show this help
611
- showcommands! Show git commands while executing them
612
+ q, showcommands! Show git commands while executing them
612
613
"
613
614
# Parse arguments
614
615
parse_args " $@ "
@@ -632,7 +633,7 @@ git flow feature rebase [-h] [-i] [-p] [<name|nameprefix>]
632
633
Rebase <name> on <base_branch>
633
634
--
634
635
h,help! Show this help
635
- showcommands! Show git commands while executing them
636
+ q, showcommands! Show git commands while executing them
636
637
i,[no]interactive Do an interactive rebase
637
638
p,[no]preserve-merges Preserve merges
638
639
"
@@ -696,7 +697,7 @@ git flow feature pull [-h] <remote> [<name>]
696
697
Pull feature <name> from <remote>
697
698
--
698
699
h,help! Show this help
699
- showcommands! Show git commands while executing them
700
+ q, showcommands! Show git commands while executing them
700
701
"
701
702
local current_branch
702
703
@@ -765,7 +766,7 @@ git flow feature delete [-h] [-f] [-r] <name>
765
766
Delete a given feature branch
766
767
--
767
768
h,help! Show this help
768
- showcommands! Show git commands while executing them
769
+ q, showcommands! Show git commands while executing them
769
770
f,[no]force Force deletion
770
771
r,[no]remote Delete remote branch
771
772
"
@@ -837,7 +838,7 @@ git flow feature rename <new_name> [<new_name>]
837
838
Rename a given feature branch
838
839
--
839
840
h,help! Show this help
840
- showcommands! Show git commands while executing them
841
+ q, showcommands! Show git commands while executing them
841
842
"
842
843
gitflow_rename_branch " $@ "
843
844
}
0 commit comments