使用 Intellij Idea 推送到 Github 时 "DontNeedGithubAccount" 而不是用户名
"DontNeedGithubAccount" instead of username when pushing to Github with Intellij Idea
我正在尝试从 Intellij 推送到我的 github 帐户。一切正常。但是,当我从浏览器进入 Github 时,显示的不是我的 github 用户名,而是显示提交的名称 "DontNeedGithubAccount"。我很惊讶 Google 在搜索 "DontNeedGithubAccount" 时只有几个条目,但其中 none 的帮助甚至很小。
感谢 Ped7g,我明白了:在您的 git 配置 (.git/Config) 中,您需要添加
[user]
name = github_username
email = github_email@example.com
您也可以通过以下方式实现这一点(对当前使用 --local 或对所有存储库使用 --global)
git config --local user.name github_username
git config --local user.email github_email@example.com
用户名必须与 Github 上的一致。如果您另外提供相同的电子邮件,您可以点击您的用户名并访问您的帐户。
我正在尝试从 Intellij 推送到我的 github 帐户。一切正常。但是,当我从浏览器进入 Github 时,显示的不是我的 github 用户名,而是显示提交的名称 "DontNeedGithubAccount"。我很惊讶 Google 在搜索 "DontNeedGithubAccount" 时只有几个条目,但其中 none 的帮助甚至很小。
感谢 Ped7g,我明白了:在您的 git 配置 (.git/Config) 中,您需要添加
[user]
name = github_username
email = github_email@example.com
您也可以通过以下方式实现这一点(对当前使用 --local 或对所有存储库使用 --global)
git config --local user.name github_username
git config --local user.email github_email@example.com
用户名必须与 Github 上的一致。如果您另外提供相同的电子邮件,您可以点击您的用户名并访问您的帐户。