Skip to content

Instantly share code, notes, and snippets.

@edsilv
Last active January 18, 2018 09:29
Show Gist options
  • Select an option

  • Save edsilv/23b137339ace3da4cef8 to your computer and use it in GitHub Desktop.

Select an option

Save edsilv/23b137339ace3da4cef8 to your computer and use it in GitHub Desktop.
git tags
#push tag
git push origin <tag_name>
#delete all remote tags
git tag -l | xargs -n 1 git push --delete origin
#delete all local tags
git tag | xargs git tag -d
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment