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
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
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
git flow feature
#Open a feature branch named: feature/feature_name
git flow feature start feature_name
#Close a feature branch
git flow feature finish feature_name
#Remember to push all branches
git push --all
git flow release
#Starting a release create a branch release/release_version
#tipically version are Semantic Versioning standard X.Y.Z
git flow release start release_version
#Finish a release, remember to update your application version!
git flow release finish release_version
#Remember to push all branches and tags
git push --all --follow-tags
gitflow workflow diagram
$ git checkout -b myfeature develop
Switched to a new branch "myfeature"
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us