转自:http://blog.youkuaiyun.com/stimgo/article/details/52161888
今天博主正在愉快地学习在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"
本文介绍了一个在使用Android Studio过程中遇到的Git配置问题及解决方案。主要问题是由于未正确配置Git的用户邮箱和用户名导致的初始化提交失败。通过在Git Bash中执行特定命令解决了这一问题。
388

被折叠的 条评论
为什么被折叠?



