git log 一般操作
1 | git log 查看全部提交日志 |
如果你厌倦了黑呼呼的界面,下面让你的git log色彩更丰富一些:
1 | git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit |
如果觉得觉得这么长的命令不好记,那么设个“别名”吧:
1 | git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" |