Read more

Git: Listing branches with their latest author

Dominik Schöler
July 21, 2014Software engineer at makandra GmbH

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
Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

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

Posted by Dominik Schöler to makandra dev (2014-07-21 12:39)