gitflow workflow 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 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

Example 4: 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

Example 5: git workflow

a basic git workflow
1. clone repsitory
2. staging
3. commit
4. push

Example 6: gitflow workflow diagram

$ git checkout -b myfeature develop
Switched to a new branch "myfeature"

Tags:

Html Example