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.
我正在使用 OSX。
我注意到,当我使用本地计算机使用 git 提交对公共项目的更改时,提交上的用户名(在网站中 - 在“提交”下的项目页面中)是我在本地计算机中使用的用户名,而不是我的git用户名...
我怎样才能改变这个?我不想将我的本地用户名暴露给所有人!
提前非常感谢!
在 git 配置中设置您的用户名(最好是电子邮件),使用: git config --global user.name "your username" git config --global user.email "email@domain"
git config --global user.name "your username"
git config --global user.email "email@domain"