jarrodhroberson
8/22/2015 - 6:08 AM

Git Alias to remove local tag and remote tag in one command!

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"