Skip to content

Instantly share code, notes, and snippets.

@jarrodhroberson
Created August 22, 2015 06:08
Show Gist options
  • Save jarrodhroberson/bf399148f05bb8c9ec9c to your computer and use it in GitHub Desktop.
Save jarrodhroberson/bf399148f05bb8c9ec9c to your computer and use it in GitHub Desktop.
Git Alias to remove local tag and remote tag in one command!
[alias]
rmtag = "!f() { git tag -d ${1}; git push origin :refs/tags/${1}; git tag; }; f"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment