-
Notifications
You must be signed in to change notification settings - Fork 4
Git Flow
Rafael Batista edited this page Oct 23, 2021
·
4 revisions
sudo apt install git-flow
git flow init
Which branch should be used for bringing forth production releases?
Branch name for production releases: [master] master
Which branch should be used for integration of the "next release"?
Branch name for "next release" development: [develop] develop
How to name your supporting branch prefixes?
Feature branches? [feature/] feature/
Bugfix branches? [bugfix/] bugfix/
Release branches? [release/] release/
Hotfix branches? [hotfix/] hotfix/
Support branches? [support/] support/
Version tag prefix? [] v
Hooks and filters directory? [.husky] .husky
git flow feature start MYFEATURE
git flow feature publish MYFEATURE
git flow feature track MYFEATURE