Answers for "git delete all tags local and remote"

1

git delete all tags local and remote

git tag -d $(git tag -l)
Posted by: Guest on January-26-2021
1

git remove all tags from remote

git fetch
git tag -l | xargs -n 1 git push --delete origin
Posted by: Guest on June-08-2021

Code answers related to "git delete all tags local and remote"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language