肖依依 4#
1、配置用户信息(Config User Info)
$ git config --global user.name
Xiao YiYun
$git config --global user.email
Xiao_yiyun@qq.com
在git.com发布时会看到你的这些信息
2、配置行尾&颜色(Config Line Endings & Color)
行尾是特别重要的,因为在不同平台中的仍然有区别:Mac,linux,Windows,CR等,所有这些选择,Git将帮助标准化那些正在被check的文件到存储库,通过设置比如 core.autocrlf
$ git config --global core.autocrlf true
$ git config --global core.autocrlf input
颜色是更多的用户界面调整,颜色是非常容易识别的东西
$ git config --global color.ui auto
$ git diff
红色:正在进行处理
绿色:运行正常
3、Config有用的设置
local:具有最高的优先级,大于global
global:稍弱,将被local覆盖
System:最弱,通常是最模糊的或者不常用的设置,将被global或者local覆盖
John景son 5#