我在Eclipse工作区中设置了一个Android项目。如果可以在自己的Git存储库中设置这个单独的项目,我希望是什么。我之前尝试过这样做,但我最终得到了一个巨大的文件,因为我的所有工作区项目最终都在这个回购中。当我将APK上传到Google Play商店时,这会导致问题。 (它大概是20MB而不是2MB)。
关于我如何能够做到这一点的任何想法?谢谢你的帮助。
答案 0 :(得分:8)
您显然已将整个工作区变为git repo
my-project
问题
$ 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
完成