Created
October 8, 2012 21:00
-
-
Save tenpn/3854944 to your computer and use it in GitHub Desktop.
a bash script to list unused remote branches
This file contains 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
for branch in `git branch -r --merged develop`; do | |
echo $branch `git log $branch -1 --pretty=format:%ct` | |
done | sort -k2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Powershell version: https://gist.github.com/3857377