查看两个manifest之间的差异
1. 建立对应的repo branch
2. repo forall -pc git log --oneline branchA...branchB
-p: 显示project name
-c: 执行之后的git 命令
解决patch冲突
git am *.patch
git apply --reject *.patch
vim *.rej
修改冲突,提交
git log
简介:https://www.jianshu.com/p/0805b5d5d893
git中文手册:https://www.php.cn/manual/view/34942.html
- 排除文件夹:
git log -- . ":(exclude)folderName1" ":(exclude)folderName2" 排除多个文件夹https://blog.csdn.net/winters_song/article/details/90520596 - 搜索多个作者相关patch:
git log --grep="vincent.wang\|jeson.gao" --oneline