git flow init
git flow feature start <feature_name>
git flow feature finish <feature_name>
git flow feature publish <feature_name>
git flow feature pull origin <feature_name>
git flow feature track <feature_name>
git flow release start <release_name> [BASE_COMMIT]
git flow release publish <release_name>
git flow release track <release_name>
git flow hotfix start <version> [BASENAME]
By finishing a hotfix it gets merged back into develop and master. Additionally the master merge is tagged with the hotfix version.
git flow hotfix finish <version>