0
在命令過程中,使用PhpStorm的git push使用舊用戶名(Alex)。如何改變它到另一個? 謝謝enter image description herePhpStorm如何在git push上作者姓名更改
在命令過程中,使用PhpStorm的git push使用舊用戶名(Alex)。如何改變它到另一個? 謝謝enter image description herePhpStorm如何在git push上作者姓名更改
如果你想永久改變它,只需改變你的Git配置。 (無論是從內PhpStorm或從你的操作系統),打開一個終端窗口,執行:
git config --global user.name "John Doe"
git config --global user.email [email protected]
當然,使用適當的用戶名/電子郵件地址。如果您只想用另一個作者名稱推送單個提交,則可以在右上角的提交對話框中進行設置,使用該語法時使用username <email>
語法。