我知道,如果我只想在具有某些扩展名的文件上搜索模式,我可以这样做:
// 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 从其树中存储的索引中获得的速度) ,但是没有用。我看到 给你,排除某些文件类型是不可能的。