git rev-list
rev-list
어떤 Commit이 특정 변경을 일으켰는지 검색
How to grep (search) committed code in the git history?
git rev-list --all | xargs git grep expression # or git grep <regexp> $(git rev-list --all)