Answers for "tags in git"

3

how to create tag in git

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

git add tag

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

git see tags

$ git tag -l -n2
Posted by: Guest on June-19-2020
0

git find out commit for tag

$ git rev-list -n 1 $TAG
Posted by: Guest on May-27-2020
0

git tag

<h1>hello</h1>
Posted by: Guest on September-11-2021
1

git tag documentation

git tag [-a | -s | -u <keyid>] [-f] [-m <msg> | -F <file>] [-e]
	<tagname> [<commit> | <object>]
git tag -d <tagname>…​
git tag [-n[<num>]] -l [--contains <commit>] [--no-contains <commit>]
	[--points-at <object>] [--column[=<options>] | --no-column]
	[--create-reflog] [--sort=<key>] [--format=<format>]
	[--merged <commit>] [--no-merged <commit>] [<pattern>…​]
git tag -v [--format=<format>] <tagname>…​
Posted by: Guest on August-29-2021

Browse Popular Code Answers by Language