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"