zoukankan      html  css  js  c++  java
  • android studio上传项目到github报错Successfully created project 'Demo' on GitHub, but initial commit failed:

    今天博主正在愉快地学习在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安装目录C:Program FilesGit 下的Git Bash运行后输入下面两行代码即可:

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

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

    上面的邮箱地址和 用户名,可随便写

  • 相关阅读:
    图的广度优先搜索
    图的深度遍历
    图的邻接表的实现
    求1+2!+3!+...+20!的和。
    CSS用户界面样式
    CSS三角
    CSS字体图标技术
    CSS精灵技术
    CSS元素的显示和隐藏
    CSS定位
  • 原文地址:https://www.cnblogs.com/simadi/p/6848303.html
Copyright © 2011-2022 走看看