how to initialised my repository with git flow code example

Example 1: git flow init

#basic
git flow init
#with default to not be promted
git flow init -d
#with force to re-run init and edit data
git flow init -f

Example 2: how to initialised my repository with git flow

how to initialised my repository with git flow

Example 3: git flow hotfix

#Start hotfix
git flow hotfix start VERSION
#Finish hotfix, Remember to increase your app version!
git flow hotfix finish VERSION
#Remember to push all branches and tags
git push --all --follow-tags

Example 4: how to initialised my repository with git flow

how to initialised my repository with git flow

Tags:

Misc Example