Answers for "git add tag"

15

git push tags

#from git 1.8.3 you can use
git push --follow-tags
#single tag push
git push origin <tag_name>
#All tags (if possible use --follow-tags 'cause it's safer)
git push --tags
Posted by: Guest on April-04-2020
3

how to create tag in git

git tag -a v1.4 -m "my version 1.4"
Posted by: Guest on April-12-2021
16

git create tag and push

git tag -a v1.4 -m "my version 1.4"
Posted by: Guest on December-11-2019
3

git commit and tag

git tag -a v1.0 7cceb02 -m "Your message here"
Posted by: Guest on February-07-2021
7

git add tag

git tag -a v1.2 
git push origin v1.2
Posted by: Guest on June-02-2020
4

create a tag from a commit/branch

git tag -a version.number -m "Tag Message"
git push origin <tagname>
Posted by: Guest on April-23-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language