u16suzuの blog

日々学んだことのメモブログです。

2012-04-10から1日間の記事一覧

git log and grep usage

git log 変更内容に含むストリングで検索 git log -S'string' git log -G'regexp' authorで検索 git log --author=regexp file編集内容(diffstat)も表示 git log --stat コミットログを正規表現で検索 git log --grep=regexp 一行で表示する git log --oneli…