Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 git gui 获取更改,问题是我得到一个对话框窗口,要求输入密码:
OpenSSH Administrator@IP-ADDRESS's password:
如您所见,用户名是管理员,这是我的 Win7 机器的帐户名。我将如何更改该用户名?
谢谢
git config --global user.name "My Name"
如果您只希望它用于该特定项目,请不要使用--global.
--global
如果您还需要更改电子邮件,类似地:
git config --global user.email "myname@email.com"