Bye Bye Moore

PoCソルジャーな零細事業主が作業メモを残すブログ

git shortlogでコミットした人とコミットメモだけみる

gitにはlogサブコマンドがあり、こいつを使うと過去の履歴が確認できます。

単に名前とコミット者を知りたいときはshortlogというサブコマンドもあります。

実際のところ

ionoPiのリポジトリで実行すると、こんなかんじ

$ git shortlog
Giampiero (17):
      init
      fixes
      utility fixes
      ionoPi1WireBusReadTemperature attempts
      ionoPiWiegandMonitor fix
      WIRINGPI_CODES
      volatile fix
      README fix
      Added lib usage info
      switch OC1 - LED pins - version 1.2.0
      upgrade wiringPi
      removed workaround for fixed bug in wiringPi
      new ionoPiVoltageRead()
      utility: added iono ai<n> -r
      version 1.3.0 - added digital inputs debounce + minor fixes
      minor fixes
      digital interrupts optimisation + interrupts on ttl*

Giampiero Baggiani (9):
      Create README.md
      Update README.md
      Documentation
      Update README.md
      Update README.md
      Update README.md
      Update README.md
      Update README.md

参考もと

git-scm.com