git rev-list

어떤 Commit이 특정 변경을 일으켰는지 검색

git rev-list --all | xargs git grep expression
# or
git grep <regexp> $(git rev-list --all)