Github命令_git log

git log一般是用来查看提交(commit)记录的,

具体来说:一是自定义提交的输出格式,二是过滤输出哪些提交;

git log -p 可以显示每次提交的内容差异;

git fetch之后可以尝试输入一下内容:

git log -p master..origin/master   //用来显示包含在origin/master而不再master分支的提交;

git shortlog  //可以按照提交者的名称显示提交

Github命令_git log

==================================================================

相关链接:

研究一下git log的用法:
https://www.cnblogs.com/zhangjianbin/p/7778625.html

git log 查看提交记录
https://www.cnblogs.com/mf001/p/8663879.html

相关推荐