vlambda博客
学习文章列表

解决上传到github报错Who are you

今天正在愉快地学习在IDEA中使用Git,结果报了下面这个错∑(っ°Д°;)っ


Can't finish GitHub sharing process

Successfully created project 'Demo' on GitHub, but initial commit failed:

*** Please tell me who you are. Run git config --global user.email "[email protected]" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: empty ident name (for (null)>) not allowed during executing git -c core.quotepath=false commit -m "Initial commit" --

看了一下错误原因:Run git config --global user.email "[email protected]" git config --global user.name "

原来是git没有配置的原因,找到git安装目录下的Git Bash运行后输入下面两行代码即可:


  1. git config --global user.email "[email protected]"  

  2. git config --global user.name "Your Name"