为什么 github 显示不同的作者姓名?
Why is github showing different authorname?
我克隆了我的代码的新仓库。
然后我在 repo 中进行了必要的更改,然后执行了这三个步骤
git add --all
git commit
git push -u origin master
它询问我输入的用户名和密码。
但是在推送之后,git 存储库显示的更改是由我的同事而不是我本人编写的。为什么这样?
拿不到。
查看配置中的邮箱是什么
git config --global user.email
如果不是你的,请更改并重新提交:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
当您这样做时,它是否在本地将您的提交作者显示为您的同事?git log
?
您可以通过 运行 这些命令检查 "who you're committing as":
git config user.name
git config --global user.name
和ensure your email is properly associated with your GitHub account。您可以用同样的方式检查您的本地电子邮件地址设置:
git config user.email
git config --global user.email
我克隆了我的代码的新仓库。 然后我在 repo 中进行了必要的更改,然后执行了这三个步骤
git add --all
git commit
git push -u origin master
它询问我输入的用户名和密码。
但是在推送之后,git 存储库显示的更改是由我的同事而不是我本人编写的。为什么这样? 拿不到。
查看配置中的邮箱是什么
git config --global user.email
如果不是你的,请更改并重新提交:
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
当您这样做时,它是否在本地将您的提交作者显示为您的同事?git log
?
您可以通过 运行 这些命令检查 "who you're committing as":
git config user.name
git config --global user.name
和ensure your email is properly associated with your GitHub account。您可以用同样的方式检查您的本地电子邮件地址设置:
git config user.email
git config --global user.email