此问题类似于:How do I see the commit differences between branches in git?
但我希望分别看到每个提交的差异,允许我在上传到github之前在提交中找到问题并使用rebase -i修改提交。
答案 0 :(得分:1)
执行git log
查看提交列表。然后获取您要查看的提交的SHA-1
并执行git show <SHA-1 of commit>
答案 1 :(得分:1)
尝试git log -u
...结帐git help log
-p, -u, --patch
Generate patch (see section on generating patches).