Skip to content

Instantly share code, notes, and snippets.

@phynet
Last active November 8, 2016 13:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phynet/7f6a49b382e48b363985 to your computer and use it in GitHub Desktop.
Save phynet/7f6a49b382e48b363985 to your computer and use it in GitHub Desktop.
Delete and Add Git Remote Tags

##Delete and Add Git Tags from Remote

Delete Tags:

git tag -d Android-V-0.26.1121
git push origin :refs/tags/Android-V-0.26.1121

Add Tags:

git tag -a Android-V-0.26.1121 6258767 -m "Android-V-0.26.1121"
git push --tags origin develop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment