Answers for "git tag message"

16

git create tag and push

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

git create tag and push

$ git push origin v1.4
Counting objects: 14, done.
Delta compression using up to 8 threads.
Compressing objects: 100% (12/12), done.
Writing objects: 100% (14/14), 2.05 KiB | 0 bytes/s, done.
Total 14 (delta 3), reused 0 (delta 0)
To [email protected]:atlasbro/gittagdocs.git
* [new tag] v1.4 -> v1.4
Posted by: Guest on December-11-2019
0

git tag message

$ 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