How to git grep only a set of file extensions

混江龙づ霸主 提交于 2019-12-21 03:36:33

问题


How do you perform a git grep and limit the files checked to a set of files. I would like to be able to grep the contents of .cpp and .h files looking for MyFunc. eg:

git grep "MyFunc" -- *.[hc]*

However this also matches, .c files and .cs files.


回答1:


Use:

git grep "MyFunc" -- '*.cpp' '*.h'

The quotes are necessary so that git expands the wildcards rather than the shell. If you omit them, it'll only search files in the current directory, rather than including subdirectories.




回答2:


This can be achieved when using git bash in Windows by using:

git grep "MyFunc" -- *.{cpp,h}

or even simpler:

git grep "MyFunc" -- *.cpp *.h

The explanation of pathspec on the git glossary mentions that patterns are matched using fnmatch(3). Which matches patterns (including multiple characters) as described by Shell and Utilities volume of IEEE Std 1003.1-2001, Section 2.13.1 and leads to basic regular expressions matching multiple characters and gave me the first solution.

Further research lead me to the second solution by looking into documentation on glob.



来源:https://stackoverflow.com/questions/21599474/how-to-git-grep-only-a-set-of-file-extensions

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!