A git alias to show a detailed git branch overview (#snippet)

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.


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis

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.

output of "git wip" command showing available branches with time to the last commit

[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. ?

Output of `git zup` command showing available branches, the time ago and the last commit message

Love it! Thanks, Carolyn!


Reply to Stefan


This content originally appeared on Stefan Judis Web Development and was authored by Stefan Judis


Print Share Comment Cite Upload Translate Updates
APA

Stefan Judis | Sciencx (2020-12-16T23:00:00+00:00) A git alias to show a detailed git branch overview (#snippet). Retrieved from https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/

MLA
" » A git alias to show a detailed git branch overview (#snippet)." Stefan Judis | Sciencx - Wednesday December 16, 2020, https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/
HARVARD
Stefan Judis | Sciencx Wednesday December 16, 2020 » A git alias to show a detailed git branch overview (#snippet)., viewed ,<https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/>
VANCOUVER
Stefan Judis | Sciencx - » A git alias to show a detailed git branch overview (#snippet). [Internet]. [Accessed ]. Available from: https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/
CHICAGO
" » A git alias to show a detailed git branch overview (#snippet)." Stefan Judis | Sciencx - Accessed . https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/
IEEE
" » A git alias to show a detailed git branch overview (#snippet)." Stefan Judis | Sciencx [Online]. Available: https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/. [Accessed: ]
rf:citation
» A git alias to show a detailed git branch overview (#snippet) | Stefan Judis | Sciencx | https://www.scien.cx/2020/12/16/a-git-alias-to-show-a-detailed-git-branch-overview-snippet/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.