[Git] git grep で拡張子のフィルターを使用する

作成日: 2020年07月16日

git grep で拡張子で絞り込むには下記のように -- に続き拡張子の条件を記述します。

git grep 'hogehoge' -- "*.php"
Git