Last active
July 4, 2022 09:16
-
-
Save johngian/f0c2441975889c03a26c271e9ad80806 to your computer and use it in GitHub Desktop.
Archive local branches
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git for-each-ref --format='%(refname:short)' refs/heads/ | grep -v -E 'production|master|main' | xargs -I {} git tag archive/{}/$(date +%s) | |
git for-each-ref --format='%(refname:short)' refs/heads/ | grep -v -E 'production|master|main' | xargs -I {} git branch -D {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment