gpt4 book ai didi

git - 如何获得多个作者的提交?

转载 作者:行者123 更新时间:2023-12-04 11:48:20 28 4
gpt4 key购买 nike

我可以获得一位作者的提交,例如:

git log <branch_1>..<branch_2> --author=John
git log <branch_1>..<branch_2> --author=Mike
但是我如何才能同时获得 John, Mike 的提交同时?

最佳答案

通过--author两次:

git log -i <branch_1>..<branch_2> --author=john --author=mike
或者,因为 --author接受正则表达式,你可以这样做:
git log --author='\(John\)\|\(Mike\)'

关于git - 如何获得多个作者的提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67704892/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com