命令行中更好的使用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 --date=relative

设置git log 别名代替上边命令

1
2
# 设置之后通过 git lg查看git 日志
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"

取消别名

1
git config --global --unset alias.lg