git flow config
help
Manage the GitFlow configuration.
git flow config [list]
git flow config set
git flow config base
list
Show the GitFlow configurations.
git flow config [list]
| -h, --help | Show this help. |
| --Use / Config file location. | |
| --local | Use repository config file. |
| --global | Use global config file. |
| --system | Use system config file. |
| --file ... | Use given config file. |
set
Set the GitFlow configuration option to the given value.
git flow config set <option> <value>
| -h, --help | Show this help. |
| --local | Use repository config file. |
| --global | Use global config file. |
| --system | Use system config file. |
| --file ... | Use given config file. |
base
Set the given base for the given branch.
git flow config base [-h] <branch> [<base>]
| -h, --help | Show this help. |
| --get | Get the base for the given branch (default behavior). |
| --set | Set the given base for the given branch. |