================================================================================
Before Today
================================================================================
If I was crying
In the van, with my friend
It was for freedom
From myself and from the land
================================================================================
06/05/2010 22:18:02
Git | git log —grep=<pattern>
$ git log --grep='特別参加' # ログメッセージの文字列から探すことができる
$ git log --grep='バック' --grep='グラウンド' # これは OR 検索になる
$ git log --all-match --grep='バック' --grep='グラウンド' # --all-match をつけることで AND 検索ができる
--------------------------------------------------------------------------------
================================================================================