Last active
May 25, 2017 07:04
-
-
Save davoam/276c98519eff817357247d27e3861f89 to your computer and use it in GitHub Desktop.
Shows sorted by commit date list of commits in remote repo
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
git remote prune origin && for branch in `git branch -r | grep -v HEAD`;do echo -e `git show --format="%ci %cr %an" $branch | head -n 1` \\t$branch; done | sort -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Shows sorted by commit date list of commits in remote repo