Skip to content

Instantly share code, notes, and snippets.

@mauris
Created April 28, 2013 03:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mauris/5475696 to your computer and use it in GitHub Desktop.
Save mauris/5475696 to your computer and use it in GitHub Desktop.
Script to delete all git tags remotely and locally on Windows Command Batchfile. Based on https://gist.github.com/matthewmccullough/898798
@echo off
for /F %%G IN ('git tag') DO git push origin :%%G && git tag -d %%G
@KainiIndustries
Copy link

Many thanks. Works as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment