This is a draft cheat sheet. It is a work in progress and is not finished yet.
Features
Start a new feature |
git flow feature start MYFEATURE |
Finish a feature |
git flow feature finish MYFEATURE |
Publish a feature |
git flow feature publish MYFEATURE |
Get a published feature |
git flow feature pull origin MYFEATURE |
Track a feature |
git flow feature track MYFEATURE |
|
|
Releases
Start a release |
git flow release start MYRELEASE |
Start a release from previous commit |
git flow release start MYRELEASE [BASE] |
Publish a release |
git flow release publish MYRELEASE |
Finish a release |
git flow release finish MYRELEASE |
Push tags after release |
git push --tags |
Hotfixes
Start a hotfix |
git flow hotfix start VERSION |
Start a hotfix with basename |
git flow hotfix start VERSION [BASENAME] |
Finish a hotfix |
git flow hotfix finish VERSION |
|
|
Commands
|
init |
git flow |
feature |
start |
NAME |
|
release |
finish |
|
hotfix |
publish |
|
|
pull |
|