From: Siraaj Khandkar Date: Tue, 7 Oct 2014 05:16:17 +0000 (-0400) Subject: Add deleting all tags, local and remote. X-Git-Url: https://git.xandkar.net/?p=git-cheat-sheet.git;a=commitdiff_plain;h=524e725b13e43fbc020288c35fa998fff9868a4c Add deleting all tags, local and remote. --- diff --git a/README.md b/README.md index 3dbce00..872a0ab 100644 --- a/README.md +++ b/README.md @@ -52,3 +52,14 @@ git commit --allow-empty -m $INIT_COMMIT_MSG git rebase --onto $TEMP_BRANCH --root $MAIN_BRANCH git branch -d $TEMP_BRANCH ``` + + +Deleting all tags, locally and remotely +--------------------------------------- +```sh +for tag in `git tag`; +do + git tag -d $tag + git push origin :refs/tags/$tag +done +```