Git常用命令速查03 - 搜索

从当前目录的所有文件中查找文本内容:

$ git grep "Hello"

在某一版本中搜索文本:

$ git grep "Hello" v2.5

你可能感兴趣的:(git)