我在Github上为我的Android应用程序的源代码设置了一个存储库。我正在使用Eclipse和ADT插件。除了src /,res /和AndroidManifest.xml中的所有内容之外,我还应该包含哪些内容,以便任何想要使用源代码的人都可以轻松地开始使用Eclipse?
答案 0 :(得分:2)
您应该包含除bin
- 文件夹之外的所有内容(这可以由其他用户生成)。此外,如果您使用的是Eclipse,则可能需要使用eGit。
答案 1 :(得分:1)
在目录的根目录上设置存储库(git init),您将避免考虑此类问题。只需添加每次要更新存储库和推送时git status显示的更改。 无论如何,尽量不要包含.class文件 - 即它没用,因为贡献者可以自己编译代码。
基本上:
cd yourproject
git init
git add . (or git status to check before what to add)
git commit -m 'this is an example of a commit'
git remote add origin git@github.com:username/yourprojectnameingithub.git
git push origin master
答案 2 :(得分:0)
如果您有目录,也可以包含您的lib目录(包括.jar文件)。