git使用者名稱和郵箱配置

看風景就發表於2018-11-22

1. 設定全域性使用者名稱和郵箱

git config --global user.name "xxx"
git config --global user.email "xxx@xx.com"

2. 清除全域性使用者名稱和郵箱

git config --unset --global user.name
git config --unset --global user.email

3. 設定本專案的使用者名稱和郵箱

git config user.name "xxxx"
git config user.email "xxx@xx.com"

 

相關文章