Skip to content

Instantly share code, notes, and snippets.

@brentvatne
Created November 11, 2014 20:56
Show Gist options
  • Save brentvatne/887bce84a0a62ebea174 to your computer and use it in GitHub Desktop.
Save brentvatne/887bce84a0a62ebea174 to your computer and use it in GitHub Desktop.
Delete all tags locally and remotely for a git repo
#!/usr/bin/env ruby
`git tag`.split(/\n/).each do |tag|
`git tag -d #{tag}`
`git push origin :refs/tags/#{tag}`
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment