2017-03-07 48 views

回答

1

git識別用戶信息的關鍵是user.name和email configs。這些配置可以整體或每個項目進行配置。

所以,爲您解決問題的方法之一是這些CONFIGS添加到您的所有github上的項目:

git config --local user.name "github name" 
git config --local user.email "github email" 
相關問題