-
Notifications
You must be signed in to change notification settings - Fork 12
Reference: git flow config
List the git-flow configuration
git flow config [-h]
-h,--[no]help show this help
--showcommands Show git commands while executing them
Update the git-flow configuration.
git flow config set [options] <config-option> <config-value>
-h,--[no]help show this help
--showcommands Show git commands while executing them
Use config file location
--local
use repository config file - Default
--global
use global config file
--system
use system config file
--file ...
use given config file
Config Options
The following are the options you can set
master - string - Branch name for production releases
develop - string - Branch name for "next release" development
feature - string - Feature branch prefix
hotfix - string - Hotfix branch prefix
release - string - Release branch prefix
support - string - Support branch prefix
versiontagprefix - string - Version tag prefix
allowmultihotfix - boolean - Allow multiple hotfix branches
Update the git-flow base configuration used when finishing a branch.
git flow config base [options] <branch> [<base>]
-h,--[no]help show this help
--get
Get the base for the given branch (default behavior).
--set
Set the given base for the given branch.