Created
June 13, 2024 14:59
-
-
Save SamTobias/bc4c4745773f98512483e0fa0c2469eb to your computer and use it in GitHub Desktop.
Git - Delete merged branches from remote
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 branch -r --merged master | grep -Ev "(^\*|master|main|develop)" | sed 's/origin\///' | xargs -n 1 git push --delete origin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
(On Windows, you will need to run it in Git Bash or WSL)
Source: StackOverflow