You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ git config --global gitflow.prefix.feature "feature/"
$ git config --global gitflow.prefix.bugfix "bugfix/"
$ git config --global gitflow.prefix.release "release/"
$ git config --global gitflow.prefix.hotfix "hotfix/"
$ git config --global gitflow.prefix.support "support/"
$ git flow init -d
Using default branch names.
Which branch should be used for bringing forth production releases?
- master
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
How to name your supporting branch prefixes?
Version tag prefix? []
Hooks and filters directory? [???/.git/hooks]
$ git flow feature start ttt
Switched to a new branch 'feature/ttt'
Summary of actions:
- A new branch 'feature/ttt' was created, based on 'develop'
- You are now on branch 'feature/ttt'
Now, start committing on your feature. When done, use:
git flow feature finish ttt
--global
adds following section in the~/.gitconfig
file~/.gitconfig
The text was updated successfully, but these errors were encountered: