Skip to content

Instantly share code, notes, and snippets.

@mbarrben
Created July 29, 2013 09:44
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 mbarrben/6103274 to your computer and use it in GitHub Desktop.
Save mbarrben/6103274 to your computer and use it in GitHub Desktop.
Move remote Git tag
git pull # to marge changes from others
git tag -d v0.99 # delete the tag
git push origin :refs/tags/v0.99 # this remove tag from remote repository
git tag v0.99 # this mark the most recent commit
git push origin v0.99 # push a new tag position to remote repository
@mbarrben
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment