我知道,如果我只想在具有某些扩展名的文件上查找模式,我可以这样做:
// searches recursively and matches case insensitively in only javascript files
// for "res" from the current directory
grep -iIr --include=*.js res ./
我一直在尝试寻找一种通过 git grep 执行此操作的方法(以利用 git grep 的速度从它存储在其树中的索引中),但无济于事。我在这里看到排除某些文件类型是不可能的。