LoginSignup
4
2

More than 5 years have passed since last update.

git logをjson形式で吐き出させるCLI

Last updated at Posted at 2019-04-07
git log -1 --pretty=format:'{%n  "commit": "%H",%n  "abbreviated_commit": "%h",%n  "refs": "%D",%n  "subject": "%s",%n  "author": {%n    "name": "%aN",%n    "email": "%aE",%n    "date": "%aD"%n  },%n  "commiter": {%n    "name": "%cN",%n    "email": "%cE",%n    "date": "%cD"%n  }%n},'

-1を消すとgit logの分だけ出てくる。

これはhttps://gist.github.com/varemenos/e95c2e098e657c7688fd のcliをちょっとスリムにしたやつ。もっと情報だせるみたいなのでそれはリンク先を参照。

4
2
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
2