如何在提交消息中搜索多个单词?

时间:2018-08-28 20:16:29

标签: git grep

我尝试使用

Table ENITY_WITH_LIST
  int id,
  int value,#each row has a value of the list

但是我遇到一个致命错误。

1 个答案:

答案 0 :(得分:4)

docs中所述,可以使用多个--grep=[pattern]选项来扩展对多个单词/样式的搜索。例如,这一行:

git log --grep="foo" --grep="bar"

...查找包含消息的提交,包括foobar

如果您只需要匹配包含 foobar的内容,请同时使用--all-match选项:

git log --grep="foo" --grep="bar" --all-match