您的位置:首页 > 编程语言

解决上传到github报错Successfully created project 'Demo' on GitHub, but initial commit failed:

2016-08-09 13:29 531 查看
今天博主正在愉快地学习在AndroidStudio中使用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 "you@example.com" 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
"you@example.com" git config --global user.name "

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

git config --global user.email "you@example.com"  

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

–>路要一步一步走,记住自己走过的路,不再犯同样的错误,才是真正的成长!欢迎指点、交流。<–

如果觉得本篇博客解决了你的困惑,还请你顶下文章,或者微信扫描下方二维码,打赏下博主,感激你的支持。

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐