我很好的命令可能是:
git commit -ls
我想在将其推送到Remote之前看到我所做的所有提交。
我已尝试git diff
使用--cached
这样的命令,但这不是我现在所需要的。
答案 0 :(得分:1)
git log --author='your name registered with git within quotes'
示例:
git log --author='Some Name'
答案 1 :(得分:0)
要查看您的master版本中的提交但未查看原始版本的提交是
git log origin/master..master
我还为git log设置了一个别名,这使得很多这类信息更容易看到。你可能想试一试。
lg = log --graph --pretty=format:'%C(yellow)%h%C(cyan)%d%Creset %s %C(white)- %an, %ar%Creset'