Git: Listing branches with their latest author

Posted Almost 10 years ago. Visible to the public.

Run this command to list the authors of the most recent commit of each branch:

git for-each-ref --format='%(committerdate) %09 %(authorname) %09 %(refname)' | sort -k5n -k2M -k3n -k4n

Credits go to DarVar on SO Show archive.org snapshot .

Dominik Schöler
Last edit
Almost 6 years ago
License
Source code in this card is licensed under the MIT License.
Posted by Dominik Schöler to makandra dev (2014-07-21 10:39)