如何将Eclipse Android项目上传到GitHub?

时间:2013-07-29 18:52:43

标签: android eclipse github repository project

我在Eclipse工作区中设置了一个Android项目。如果可以在自己的Git存储库中设置这个单独的项目,我希望是什么。我之前尝试过这样做,但我最终得到了一个巨大的文件,因为我的所有工作区项目最终都在这个回购中。当我将APK上传到Google Play商店时,这会导致问题。 (它大概是20MB而不是2MB)。

关于我如何能够做到这一点的任何想法?谢谢你的帮助。

1 个答案:

答案 0 :(得分:8)

您显然已将整个工作区变为git repo

  1. 删除/备份您的仓库(工作区/ .git文件夹)
  2. 转到github并创建一个新的回购 - 说出你的名字my-project
  3. 安装msysgit迟早要使用它
  4. 右键单击项目文件夹,然后选择Git Bash here
  5. 问题

    $ git init
    $ echo bin/ >> .gitignore # exclude the bin folder !
    $ git add -A && git commit -m "All my files" # this will commit *all*
    # better fire up the gui and choose what to commit
    $ git remote add origin https://github.com/YOURUSERNAME/my-project.git
    $ git push -u origin master
    
  6. 完成