How do see who has made git commits with basic output?



  • Man page for git-shortlog.

    $ git shortlog
    

    Output:

    Alexander Schmolck (1):
          bug22209: added a comment to use upmap carefully.
    
    Alexandru Scvortov (533):
          we should still run rabbit_validate_full when rabbit is started
          merged Florian's 03 patch
          merged Florian's 04 patch
          merge Florian's 05 patch
          merged Florian's 07 patch: OCF resource agent: add status operation
          more rabbit_framing specs are generated automatically
          auto-generation of all function specs for rabbit_framing
          rabbit_framing_spec.hrl is now generated
          updated .hgignore
          codegen.py now works with latest rabbit-codegen
    ...
    ...
    ...
    

    Just the facts, please...

    $ git shortlog --summary --numbered
    

    same as:

    $ git shortlog -sn
    

    Output:

      2208  Matthew Sackman
      1677  Matthias Radestock
      1150  Simon MacMullen
       533  Alexandru Scvortov
       204  Hubert Plociniczak
       200  Tony Garnock-Jones
       198  Ben Hood
       198  Emile Joubert
       187  Rob Harrop
    ...
    ...
    ...
    

Log in to reply
 

© Lightnetics 2024