美文网首页
git学习系列笔记4-工程化

git学习系列笔记4-工程化

作者: scott_yu779 | 来源:发表于2018-01-18 17:25 被阅读0次

配置

vim ~/.gitconfig


[user]
        name = user.name
        email = xxx@xxx.xx
[color]
        ui = true
[core]
        quotepath = false
[alias]
        st = status
        co = checkout
        ci = commit
        br = branch
        pl = pull
        ps = push
        ca = commit -a
lg = log --color --graph --pretty=format:'%C(bold yellow)%h%Creset%C(bold yellow)(%ci)%C(bold blue)<%an>%Creset-%C(bold yellow)%d%Creset%s' --abbrev-commit

相关文章

网友评论

      本文标题:git学习系列笔记4-工程化

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