Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 693 Bytes

git-wip.org

File metadata and controls

12 lines (9 loc) · 693 Bytes

git wip

Carolyn Van Slyck shares an amazing Git alias for showing the recent branches on her blog.

Have you ever run git branch and still wasn’t sure what each one is for and if it’s recent? Here’s a git alias, git wip, that displays your branches and when you last changed them. It’s really useful for remembering which one you were just working on, and which branches probably should be deleted.

[alias]
  wip = for-each-ref --sort='authordate:iso8601' --format=' %(color:green)%(authordate:relative)%09%(color:white)%(refname:short)' refs/heads