Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

In libgdx auto created project, What files can I ignore on Git (or another revision control system)?

E.g Should I ignore:

*-android/.settings/
*-android/bin/
*-desktop/.settings/
*-desktop/bin/
*-html/.settings/
*-html/gwt-unitCache/
*-html/war/WEB-INF/classes/
*-html/war/WEB-INF/deploy/
*-html/war/assets/
*-html/war/
*/.settings/
*/bin/
share|improve this question
Generally, you want to put all what is needed to easily rebuild the project on your repository, whatever you are using SVN, GIT, Mercurial etc. A good practice is to avoid adding the result of compilation (e.g .class and .jar in your case). The sources and the different backend configurations should be enough. You could easily generalize your question (and ask it on the SO site) to any project using tools such as GIT, nothing specific to libGDX here. – nathan Dec 4 '12 at 8:23
@nathan, I know the theory, but I use Eclipse I don't know what files can be generated and what are uniques in this case. – Zhen Dec 4 '12 at 8:47
Maybe you can find some inspiration in this? – Laurent Couvidou Jan 31 at 15:30

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.