col*_*all 5 eclipse android github project repository
我在Eclipse工作区中设置了一个Android项目.如果可以在自己的Git存储库中设置这个单独的项目,我希望是什么.我之前尝试过这样做,但我最终得到了一个巨大的文件,因为我的所有工作区项目最终都在这个回购中.当我将APK上传到Google Play商店时,这会导致问题.(它大概是20MB而不是2MB).
关于我将如何做到这一点的任何想法?谢谢你的帮助.
你显然把你的整个工作区变成了一个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
Run Code Online (Sandbox Code Playgroud)完成
| 归档时间: |
|
| 查看次数: |
5008 次 |
| 最近记录: |