Horje
git tag Code Example
git add tag
git tag -a v1.2 
git push origin v1.2
git tag a previous commit
git tag -a v1.2 9fceb02 -m "Message here"
git tag
#To Create a tag on your current branch:
git tag <tagname>
#To include a description with your tag, add -a to create an annotated tag:
git tag <tagname> -a
#To push tags:
git push origin --tags
#To push a signle tag:
git push origin <tag>
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>…​
Source: git-scm.com
git tag
<h1>hello</h1>




Shell

Related
height not divisible by 2 (3308x1975) Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height not divisible by 2 (3308x1975) Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or
start mongodb in ubuntu Code Example start mongodb in ubuntu Code Example
docker build Code Example docker build Code Example
git clone different ssh key Code Example git clone different ssh key Code Example
Start rc.local manually Code Example Start rc.local manually Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10