dackdive's blog

新米webエンジニアによる技術ブログ。JavaScript(React), Salesforce, Python など

[git]コミット履歴を見やすく表示するためのコマンドが便利

こちらの記事でgitを勉強していた時にとても便利なコマンドが出てきたのでメモ。
今でもよく使います。

introduction-to-git/05_branch.md at master · Shinpeim/introduction-to-git · GitHub

ターミナルで以下のコマンドを入力する。

$ git config --global alias.graph "log --graph --date-order --all --pretty=format:'%h %Cred%d %Cgreen%ad %Cblue%cn %Creset%s' --date=short"

で、

$ git graph

とすると、コミット履歴が下の画像のような見やすいフォーマットで表示されるようになる。

f:id:dackdive:20140527113439p:plain

前回の記事で紹介した--author=[ユーザ名]と組み合わせて

git graph --author=[ユーザ名]

とすることも可能。