git grepで探すファイルの拡張子を指定
Jan 17, 2020 11:35 · 136 words · 1 minute read
こんな感じでできる
$ git grep cache -- '*.java'
git grepでは --
以降が対象パスの指定となっているので、そこにglobを書くと探索するファイルを指定できる
–
… Signals the end of options; the rest of the parameters are limiters.
ちなみにexcludeするときは以下のように書くようだ
$ git grep solution -- :^Documentation
Looks for solution, excluding files in Documentation.