我对GitHub/VCS很陌生。

当我尝试在GitHub上分享我的项目时,我得到了以下错误消息。

    Can't finish GitHub sharing process
    Successfully created project 'myproject' on GitHub, but initial push failed:
    remote: error: GH007: Your push would publish a private email address.
    failed to push some refs to 'https://github.com/me/myproject.git'

我用谷歌搜索了错误信息,没有结果。我还搜索了Stack Exchange,但一无所获。我该如何解决这个问题?


当前回答

我也有同样的问题。我的解决方案如下图所示:

其他回答

我也有同样的问题。我的解决方案如下图所示:

当启用“阻止命令行推送暴露我的电子邮件”功能时,您还需要配置Git以使用您的无回复电子邮件地址。别担心——这不会影响你的贡献图。所有提交仍将与您的帐户相关联。

Open Terminal. Change the current working directory to the local repository where you want to configure the email address that you associate with your Git commits. Find your GitHub noreply address in your GitHub's Personal Settings → Emails. It's mentioned in the description of the Keep my email address private checkbox. Usually, it starts with a unique identifier, plus your username. Set an email address in Git. Use your GitHub-provided no-reply email address. Setting your email address for every repository on your computer git config --global user.email "{ID}+{username}@users.noreply.github.com" Setting your email address for a single repository git config user.email "{ID}+{username}@users.noreply.github.com" Reset the author information on your last commit: git commit --amend --reset-author If you have multiple commits with your private e-mail address, see this answer. Now you can push the commit with the noreply e-mail address, and future commits will have the noreply e-mail address as well. git push

一旦你配置了Git,提交将使用你的备用“不回复”电子邮件地址,任何不这样做的推送都将被拒绝。

警告:这将暴露您的电子邮件地址!每次提交都包括提交者的电子邮件地址,对于公共存储库,此信息是公开可用的。

--

我也遇到了同样的错误:GH007消息,并使用以下方法来解决这个问题。

进入设置提交电子邮件地址。 请按照为计算机上的每个存储库设置电子邮件地址。 打开你的GitHub账户,点击设置→电子邮件。 选中“将我的电子邮件地址保密”复选框。 取消选中显示我的电子邮件复选框的“阻止”命令行推送。

我也遇到了同样的问题,我不能在上次提交时重置作者信息(正如这里所建议的)。相反,我删除了.git并再次init git,因此不再需要修改提交。

打开github.com的电子邮件部分。访问https://github.com/settings/emails。 去保密我的电子邮件地址部分,并记下你不回复的电子邮件id。 打开git终端,使用以下命令设置你的donotreply邮箱id为你的邮箱id:

git config --global user.email "<your_donotreply_email_id"

恢复您最近的本地提交(使用您的私人电子邮件),这些提交无法推送到存储库。

git reset --soft HEAD~1 

分期并推送这些提交

git add .
git commit –m "<commit_message>"
git push