我的git设定

用了时间比较长的git了,但是基本上都是git clone,git push,用checkout的都比较少,做文件还原倒还有几次。

贴下当前的git config –list内容,做个摘要

MACBOOKPRO:learn hunhun$ git config --list
credential.helper=osxkeychain
user.name=admin
user.email=xxx@xyz.com
alias.lg=log --color --graph --pretty=format:'%Cred%H%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true

下面是.gitconfig的内容

[user]
        name = admin
        email = xxx@xyz.com
[http]
[alias]
        lg = log --color --graph --pretty=format:'%Cred%H%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
| 访问量:
Table of Contents