用戶名和郵箱地址的做用git
用戶名和郵箱地址是本地git客戶端的一個變量,不隨git庫而改變。github
每次commit都會用用戶名和郵箱紀錄。code
github的contributions統計就是按郵箱來統計的。it
修改密碼io
git config --global credential.helper store (輸入這個命令後,之後只要在輸入一次用戶名密碼) email
查看用戶名和郵箱地址:變量
$ git config user.name密碼
$ git config user.email統計
修改用戶名和郵箱地址:客戶端
$ git config --global user.name "username"
$ git config --global user.email "email"