基本配置
1、用戶名仓蛆、郵箱
// 設(shè)置
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參數(shù)
global:版本庫(kù)配置文件
system:全局級(jí)別配置文件
/etc目錄下 :系統(tǒng)級(jí)別配置文件
3、Status下中文亂碼
git config --global core.quotepath false