Answers for "git tag annotation"

16

git create tag and push

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

git add tag

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

git tag annotation

$ git tag -a v1.4 -m "my version 1.4 annotation: tags HEAD"
$ git tag
v0.1
v1.3
v1.4

$ git show v1.4
tag v1.4
Tagger: John doe <[email protected]>
Date:   Sat May 3 20:19:12 2014 -0700

my version 1.4 annotation: tags HEAD	#Tag message

commit ca82a6dff817ec66f44342007202690a93763949 (HEAD -> main, tag: 1.4)
Author: Scott Chacon <[email protected]>
Date:   Mon Mar 17 21:52:11 2008 -0700

    Change version number	#Commit message

:
#Press Q to quit from git show
Posted by: Guest on October-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language