Skip to content

Instantly share code, notes, and snippets.

@genemyers
Forked from lucijafrkovic/git_retag
Created February 28, 2019 14:49
Show Gist options
  • Select an option

  • Save genemyers/89897694b8c0356b7eb48d86264eb991 to your computer and use it in GitHub Desktop.

Select an option

Save genemyers/89897694b8c0356b7eb48d86264eb991 to your computer and use it in GitHub Desktop.
Retagging on git
1. list all remote tags
git ls-remote --tags
2. delete local tag
git tag -d V_1_0_1
3. push tag deletion to remote
git push origin :refs/tags/V_1_0_1
4. tag local branch again
git tag V_1_0_1
5. push tag to remote
git push origin tag V_1_0_1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment