Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

Git tag

# Add tags
git tag tagName

# Push tags
git push --follow-tags

# Delete locally
git tag -d tagName

# Delete remote tag:
git tag -d tagName
git push origin :tagName
Comment

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>
Comment

git tag

$ git tag -a <tagname> -m <msg>

$ git tag -d <tagname>
Comment

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>…​
Comment

git tag

#list tags
$ git tag
v1.0
v2.0
Comment

PREVIOUS NEXT
Code Example
Shell :: how to use brew to install ganache 
Shell :: gulp trust cert 
Shell :: download fbreader for ubuntu 
Shell :: Brave on OpenSUSE 
Shell :: download chromium-browser/libffmpeg.so 
Shell :: install watchman on linux 
Shell :: git tag from commit 
Shell :: install git linux 
Shell :: sed between two patterns 
Shell :: git move file 
Shell :: How to change boot order on fedora 
Shell :: mac install gensim 
Shell :: gitlab login on terminal 
Shell :: how to pull remote changes to local branch 
Shell :: git untag 
Shell :: tasksel uninstall package 
Shell :: powershell ssh with password 
Shell :: install ruby json gem in aws ec2 
Shell :: conda install pyav 
Shell :: grep count words 
Shell :: mikrotik reboot bash sintakx 
Shell :: vsode zsh 
Shell :: get tag list of image from hub using cli 
Shell :: github undo last pushed commit 
Shell :: pyaudio windows fail 
Shell :: how to kill running port in ubuntu 
Shell :: how to install bwa in ubuntu 
Shell :: linux disk usage by directory one level 
Shell :: unix permissions 
Shell :: fedora dnf remove repo 
ADD CONTENT
Topic
Content
Source link
Name
1+2 =