当我将文件从终端中的git提交到分支时,它会将提交显示为由我的真实姓名完成。它从哪里获取我的名字,如何更改它以显示我的用户名?在我的Github设置中,我没有设置名称,git config --get user.name
返回我的github用户名。
答案 0 :(得分:3)
当我将文件从终端中的git提交到分支时,它会将提交显示为以我的真实姓名完成
这是从config user.name和user.email
设置的在您的回购中,请确保:
git config user.name <yourGitHubAccountName>
git config user.email <yourGitHubAccountEmail>
然后进行新的提交,并使用git log查看他们的作者/电子邮件是否正确。
注意:正如我在&#34; How do I make git block commits if user email isn't set?&#34;中所提到的,我更喜欢设置:
git config --global user.useConfigOnly true
这样可以避免在未设置本地user.name
时让git尝试猜测您的用户名。