Git-01-基本配置

2018-12-02  本文已影响11人  GJCode

基本配置

1、用户名、邮箱
// 设置
git  config --global user.name "your  name"
git config --global user.email "your email"

// 查看
git config user.name
git config user.email

// 删除
git config--unset--global user.name
git config--unset--global user.email
2、config参数

global:版本库配置文件
system:全局级别配置文件
/etc目录下 :系统级别配置文件

3、Status下中文乱码
git config --global core.quotepath false
上一篇下一篇

猜你喜欢

热点阅读