如何将Android Studio的项目上传到Github上

炒沙作縻终不饱,缕冰文章费工巧。这篇文章主要讲述如何将Android Studio的项目上传到Github上相关的知识,希望能为你提供帮助。

  1. 【如何将Android Studio的项目上传到Github上】VCS--> Import into version control--> Share Projection on Github
  2. 在弹出的对话框中输入相关信息
  3. 如果弹出一下错误:
Please tell me who you are. Run git config --global user.email "[email  protected]" 
........
        解决办法:

        在Git目录下打开git-base.ext输入以下命令:

        git config --global user.email "[email  protected]"//你的邮箱

        git config --global user.name "xxx"//你的名字

4. 删掉GitHub上的仓库重来一次就好了

    推荐阅读