美文网首页
git.技巧.美化log

git.技巧.美化log

作者: 少林_cf79 | 来源:发表于2018-06-06 15:10 被阅读0次

    方法是通过git config添加 lg 脚本,

    方式一: 在 ~/.gitconfig 中添加如下内容:

    [alias]

          lg = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'

    方法二: 运行git命令

    person@pc:: git config --global alias.lg "log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset'"

    美化前

    美化后

    相关文章

      网友评论

          本文标题:git.技巧.美化log

          本文链接:https://www.haomeiwen.com/subject/qambsftx.html