Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

git delete all tags local and remote

git tag -d $(git tag -l)
Comment

git remove remote tags

Delete a remote Git tag

$ git push --delete origin tagname
Comment

git remove all tags from remote

git fetch
git tag -l | xargs -n 1 git push --delete origin
Comment

PREVIOUS NEXT
Code Example
Shell :: wsl upgrade to 2 
Shell :: docker destroy all 
Shell :: flutter download all dependencies 
Shell :: youtube music download ubuntu 
Shell :: how to install parcel globally 
Shell :: clone a conda environment 
Shell :: linux start mongodb 
Shell :: docker pull image and rename it 
Shell :: linux apache restart 
Shell :: install pip kali 
Shell :: create venv in windows 
Shell :: how to extract zip file in ubuntu terminal 
Shell :: install curl in alpine linux 
Shell :: install nodeos as service linux 
Shell :: node sass install error 
Shell :: upgrade ubuntu version command line 
Shell :: random string linux 
Shell :: Error: Cannot install in Homebrew on ARM processor in Intel default prefix (/usr/local)! 
Shell :: docker remove all images 
Shell :: install epel amazon linux 2 
Shell :: centos see user list 
Shell :: update font cache linux 
Shell :: kill xcode from command line 
Shell :: bash remove characters from end of every line 
Shell :: epub reader on ubuntu 
Shell :: tays vimrc 
Shell :: vue-cli-service not found 
Shell :: docker ls in dockerfile 
Shell :: snap install microsoft teams 
Shell :: wsl sync clock time 
ADD CONTENT
Topic
Content
Source link
Name
6+6 =