制作Pull Request的用户在合并后不会出现在Contributor List中

时间:2016-11-15 15:16:39

标签: git github

我有一个回购Test。 GitHub通知我,分配我的仓库woo27的用户Test已经完成了拉取请求,这些是官方推荐的命令(见下面的截图)要合并:

git checkout -b woo27-master master
git pull https://github.com/woo27/Test.git master
git checkout master
git merge --no-ff woo27-master
git push origin master

我完成了这些命令,并合并了。我的工作,但后来woo27没有出现在贡献者列表中,也没有出现在修改文件的人员列表中。为什么?如何解决这个问题?

enter image description here

(这与1天的延迟无关,我以前遇到过同样的问题)

enter image description here

1 个答案:

答案 0 :(得分:1)

解决方案是询问执行拉取请求的人:

git config user.email "your_email@example.com"

使用与用于GitHub帐户的电子邮件相同的电子邮件。

来源:https://help.github.com/articles/setting-your-email-in-git/

然后它会起作用。

enter image description here