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?
v1.0
If you simply want to create a new branch without immediately changing to it, you could do the following:
git branch newbranch v1.0