2015-11-18 45 views

回答

0

如果你想永久改變它,只需改變你的Git配置。 (無論是從內PhpStorm或從你的操作系統),打開一個終端窗口,執行:

git config --global user.name "John Doe" 
git config --global user.email [email protected] 

當然,使用適當的用戶名/電子郵件地址。如果您只想用另一個作者名稱推送單個提交,則可以在右上角的提交對話框中進行設置,使用該語法時使用username <email>語法。