-
Notifications
You must be signed in to change notification settings - Fork 527
Reference: git flow bugfix
Lists all the existing bugfix branches in the local repository.
git flow bugfix [list] [-h] [-v]
-h,--[no]help show this help
-v,--[no]verbose verbose (more) output
Start new bugfix <name>, optionally basing it on <base> instead of <develop>
git flow bugfix start [-h] [-F] <name> [<base>]
-h,--[no]help show this help
--showcommands
Show git commands while executing them
-F,--[no]fetch
fetch from origin before performing local operation
Finish bugfix <name>
git flow bugfix finish [-h] [-F] [-r] [-p] [-k] [-D] [-S] [--no-ff] <name|nameprefix>
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
-F,--[no]fetch
fetch from origin before performing finish
-r,--[no]rebase
rebase before merging
-p,--[no]preserve-merges
preserve merges while rebasing
-k,--[no]keep
keep branch after performing finish
--[no]keepremote
keep the remote branch
--[no]keeplocal
keep the local branch
-D,--[no]force_delete
force delete bugfix branch after finish
-S,--[no]squash
squash bugfix during merge
--no-ff
never fast-forward during the merge
Publish bugfix branch <name> on $ORIGIN
git flow bugfix publish [-h] <name>
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
Start tracking bugfix <name> that is shared on $ORIGIN
git flow bugfix track [-h] <name>
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
Show all changes in <name> that are not in <develop>
git flow bugfix diff [-h] [<name|nameprefix>]
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
Rebase <name> on <base_branch>
git flow bugfix rebase [-h] [-i] [-p] [<name|nameprefix>]
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
-i,--[no]interactive
do an interactive rebase
-p, --[no]preserve-merges
preserve merges
Switch to bugfix branch <name>
git flow bugfix checkout [-h] [<name|nameprefix>]
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
Pull bugfix <name> from <remote>
git flow bugfix pull [-h] <remote> [<name>]
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
Deletes a given bugfix branch
git flow bugfix delete [-h] [-f] [-r] <name>
-h,--[no]help
show this help
--showcommands
Show git commands while executing them
-f,--[no]force
force deletion
-r,--[no]remote
delete remote branch
Rename branch <name> to <new_name>
git flow bugfix rename [-h] <new_name> [<name>]
-h,--[no]help
show this help
--showcommands
Show git commands while executing them