I\'d like to create a new master branch from an existing tag. Say I have a tag v1.0. How to create a new branch from this tag?
I used the following steps to create a new hot fix branch from a Tag.
Syntax
git checkout -b
Steps to do it.
git push -u origin NewBranchName
I hope this would help.