最近学到一条非常流弊的Git命令,记录一下,先看下效果:

命令为:git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative

如果嫌命令太长可以给他设置个别名,方式如下:
git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative"

下次再用的时候就只需要敲:git lg 即可。