你没有见过的 git log 风格

背景

git大家都不陌生,git log 也是大家经常用的指令,今天分享三种 git log的美化格式,大家看看哪种更易读。

git log -15 --graph --decorate --oneline

你没有见过的 git log 风格_第1张图片

带有 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 log 风格_第2张图片

自定义的git lp 风格

你没有见过的 git log 风格_第3张图片

小结

以上就是今天分享的三种不同的git log 风格了,欢迎评头论足。

你可能感兴趣的:(python,git,git)