Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git delete tag

Local:
git tag -d <tag_name>
Remote:
git push --delete origin tagname
Comment

Git delete 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 delete tag from commit

$ git push --delete origin tagname
Comment

git delete tag

// Local
$ git tag -d v1.0
Deleted tag 'v1.0' (was 808b598)

// Remote
git push --delete origin tagname
Comment

PREVIOUS NEXT
Code Example
Shell :: apt install only update 
Shell :: cara uninstall di centos 7 
Shell :: install mocha 
Shell :: eclipse in ubuntu snap 
Shell :: snapd remove command 
Shell :: laravel generate random 6 digit number 
Shell :: how to install requirements.txt 
Shell :: brew graphviz 
Shell :: bash print line if column value is in column of another file 
Shell :: command to install apache 
Shell :: install zotero linux 
Shell :: remove trash linux 
Shell :: install haskell stack 
Shell :: how to give permission to create files in directory linux 
Shell :: how to transfer a folder from ubuntu to ubuntu 
Shell :: how to install modules from requirement.txt 
Shell :: bun sh install 
Shell :: how to add an existing project to github 
Shell :: push git to github 
Shell :: add an existing user account to a group 
Shell :: jq install bash 
Shell :: how to commit to github from terminal mac 
Shell :: if else in mac terminal 
Shell :: install virtualbox ubuntu 20 wsl command line 
Shell :: * branch master - FETCH_HEAD 
Shell :: instalar pyqt5 con en mac 
Shell :: git override local file with remote 
Shell :: git global setup 
Shell :: install docker-compose ec2 
Shell :: login to ssh with password 
ADD CONTENT
Topic
Content
Source link
Name
1+3 =