背景
git大家都不陌生,git log 也是大家经常用的指令,今天分享三种 git log的美化格式,大家看看哪种更易读。
git log -15 --graph --decorate --oneline
带有 pretty 格式的git log 风格
log --color --graph --pretty=format:‘%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset’ --abbrev-commit
自定义的git lp 风格
小结
以上就是今天分享的三种不同的git log 风格了,欢迎评头论足。