A git alias to show a detailed git branch overview
Written by Stefan Judis
- Published at
- Updated at
- Reading time
- 1min
I came across Carolyn Van Slyck's article git wip: What the heck was I just doing?. She shared an excellent git alias (git wip
) that shows all available branches and how long their last commit is ago.
[alias]
wip = for-each-ref --sort='authordate:iso8601' --format=' %(color:green)%(authordate:relative)%09%(color:white)%(refname:short)' refs/heads
I tweaked it a bit to include the commit message of the last commit and changed it to zup
, too.
[alias]
zup = for-each-ref --sort='authordate:iso8601' --format='%(color:green)%(authordate:relative)%09%(color:white)%(refname:short) / %(contents:subject)' refs/heads
That's the result. 👇
Love it! Thanks, Carolyn!
If you enjoyed this article...
Join 5.4k readers and learn something new every week with Web Weekly.
Reply to this post and share your thoughts via good old email.