https://qiita.com/yuba/items/852d019af48ee7ccd92e
https://stackoverflow.com/questions/18278774/search-git-remote-all-branches-for-file-contents
git config --global grep.lineNumber true
全コミットから文字列検索する
git grep 【キーワード】 $(git rev-list --all)
全ブランチから文字列検索する git grep 【キーワード】 $(git branch -a --format='%(objectname) %(refname:short)' | s
git blobから検索
git - Which commit has this blob? - Stack Overflow
git describe <hash>