不是一个重要的问题,但是当我推动使用https协议(所以git问我用户名和密码)时,在GitHub上,我可以看到我的GitHub用户名。
当我推送ssh protocl时(我已经在GitHub设置中设置了ssh密钥,但由于我的工作,我在git二进制设置中设置了我的真实姓名)我可以看到我的真名,所以没有链接到我的profil而不是我的头像:(
有人可以解释我如何解决这个问题而不改变我在git二进制文件中的真实姓名只是为指定的仓库更改它吗?
非常感谢!
答案 0 :(得分:1)
进行提交时,必须输入以下内容设置用户名/邮件:
git config --global user.name "The name you want to show in your commits"
git config --global user.email "Mail used with GitHub account or another mail you'll add to your GitHub accout"