Created
February 25, 2016 17:28
-
-
Save stephen-puiszis/19b67f2d1a9c18ba0785 to your computer and use it in GitHub Desktop.
Delete Local Git Branches that have been merged into develop
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 --merged develop | grep -v '\* develop' | xargs -n 1 git branch -d |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment