git flow create branch from tag code example
Example 1: 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 2: git fklow init
git flow release finish '0.1.0'