Github承诺没有出现

时间:2018-03-14 19:21:16

标签: git github github-pages

我改变了我的git config user.email和git config user.name,因为我正在测试这些东西。现在,我可以推送到repo,但提交没有显示在我的实际github帐户上。

从下图中,您可以看到提交看起来像来自两个帐户,但我使用相同的用户名和密码来进行这两个提交。我认为问题出在user.email和user.name上,但我不确定。

随着更改在网站上显示,提交肯定会被推送。

Snippet of commit history

1 个答案:

答案 0 :(得分:1)

如果您git log,用户名和电子邮件与您的github完全相同吗?

如果没有,请使用以下内容再次更改它们:

git config --global user.name yourusername
git config --global user.email youremail@email.com