Skip to content

Instantly share code, notes, and snippets.

View mattrayner's full-sized avatar
:octocat:
Tinkering

Matt Rayner mattrayner

:octocat:
Tinkering
View GitHub Profile
@ultim8k
ultim8k / git_retag
Last active June 7, 2024 13:28 — forked from lucijafrkovic/git_retag
Retagging on git
1. list all remote tags
git ls-remote --tags
2. delete local tag
git tag -d v1.0.1
3. push tag deletion to remote
git push origin :refs/tags/v1.0.1
4. tag local branch again