What should be in my .gitignore for the default auto-generated project for libGDX?

I still have

bin/
gen/
war/
*.apk
/.settings/
*.class

But I know that I don’t have enough downloads because the log files get into the repo. I keep seeing conflicting things about this, some people say that they store the gene / folder, and I found gitignore in libgdx github with this (which I’m not sure if this is only for the actual git library):

# android specific 
# */gen/*   ### we want these!


### eclipse files we DO want 
    # local.properties 
    # */.loadpath 
    # classpath 
    # settings 

In any case, this library seems quite large, so someone should have The .gitignore file for libGDX projects.

+4
source share
1 answer

, . . : , " "!

  • logs - .
  • () - , , , / .
  • - .
  • - , . , - , 1GB , .
  • - , . , .

:

  • gen - , , Eclipse.
  • war classes *.class, .
  • .classpath file
  • .project file
  • .settings - , , - , .

, , . / , , .

0

All Articles