Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git create new tag

Create a new tag
git tag -a v1.4 -m "my version 1.4"

Push to your remote repo
git push origin --tags
Comment

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 add tag

git tag -a v1.2 
git push origin v1.2
Comment

how to create tag in git

git tag -a v1.4 -m "my version 1.4"
Comment

git add tag

git tag -a v1.4 -m "my version 1.4"

git push --tags
Comment

Create git tags

// create git-tag
$ git tag -a v1.4 -m "my version 1.4"
$ git tag
v0.1
v1.3
v1.4

// Unfortunately, git push doesn’t push your tags by default, so you’ll need 
to do the following to push both the new commit and the tag to your repo:

git push && git push --tags
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

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

PREVIOUS NEXT
Code Example
Shell :: docker run in interactive mode 
Shell :: nvcc not found in jetson nano 
Shell :: bash ls command not found 
Shell :: vscode tab not working 
Shell :: ords version view 
Shell :: install spicetify on windows 
Shell :: push code to git 
Shell :: show public ip 
Shell :: install cassandra 
Shell :: git diff file names 
Shell :: nvm use globally 
Shell :: clone commit of a branch 
Shell :: flutter create command 
Shell :: install appx package windows 
Shell :: set cuda path 
Shell :: heroku pg kill 
Shell :: after installing kali what next 
Shell :: setting git username 
Shell :: powershell check if software is installed 
Shell :: Android sdkmanager not found. Update to the latest Android SDK and ensure that the cmdline-tools are installed to resolve this. 
Shell :: colorlog python 
Shell :: git sync branches 
Shell :: ionic publish 
Shell :: powershell pc battery command 
Shell :: Connect to Remote MySQL Database through Command Line 
Shell :: new git 
Shell :: ubuntu docker host ip 
Shell :: blackeye bash 
Shell :: how to move a directory in linux 
Shell :: uploading a folder to github 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =