如果我想提交Alice
提交,请使用git log --author 'Alice'
。但是如果我想在那里提交Bob
提交怎么办?
我尝试了以下内容:
git log --author 'Alice|Bob'
git log --author 'Alice,Bob'
答案 0 :(得分:5)
多次使用相同的参数尝试:
git log --author 'alice' --author 'bob'
编辑:
如果使用正确的标志(USE_LIBPCRE)编译Git,则可以传递选项--perl-regexp
,以便将搜索模式解释为正则表达式:
git log --perl-regexp --author 'alice|bob'
...发现更多:
Git将选项中的所有模式解释为正则表达式。仅当您要使用Perl兼容的正则表达式时,才需要选项--perl-regexp
。
但是如果你想使用普通的正则表达式,你必须逃避“或”:
git log --author 'alice\|bob'