如何在不同的 Git Repository 使用不同的 User Name/Email

在使用 git 時,常會遇到在同台電腦上,需使用不同的 git 使用者名稱及信箱

例如:公司的 git 會用公司的 name/email ,個人的也會用私人的 name/email

 

 

不使用 global config , 而是使用Local config,將每個 Git repository 設定各自所屬的 user name/email 。

.git > config > 加入[user] name / email 

也可以下指令

$ git config --local user.name "test"
$ git config --local user.email "test@email.com"

注意,如有設定global config但未設定Local config,則會預設帶入global。


人生美好~別浪費腦容量記程式碼 :- ) 

作者:CYL
出處:http://dotblogs.com.tw/cylcode
資料來源都會特別註明,有興趣都可查詢原出處,本站皆經過整理才分享,如有轉載請顯示出處及作者,感謝。