Skip to content

Instantly share code, notes, and snippets.

@daleki
daleki / git_retag
Created October 4, 2021 19:10 — forked from lucijafrkovic/git_retag
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