欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

idea异常: idea 新建项目之后,分享github报错

程序员文章站 2022-06-17 22:57:55
...

在使用idea 创建项目之后, 想把项目分享到github上时,如果是第一次使用, 那么可能会报无法分享项目的错误。出现此异常是因为git 未配置全局用户身份导致的, 打开命令行窗口, 配置全局用户身份信息即可.

异常信息:

Can't finish GitHub sharing process
Successfully created project 'xxxx' on GitHub, but initial commit failed:
unable to auto-detect email address (got 'xxxxx.(none)')

解决方案:

# 命令行执行git命令, 配置全局用户身份信息
git config --global user.email "[email protected]"
git config --global user.name "xxxx"