Answers for "git tag create a tag from branch"

1

git create branch from tag

git checkout -b newbranch v1.0
Posted by: Guest on October-19-2020
0

git create new tag

Create a new tag
git tag -a v1.4 -m "my version 1.4"

Push to your remote repo
git push origin --tags
Posted by: Guest on October-23-2021

Code answers related to "git tag create a tag from branch"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language