Search code examples
androideclipsesvnsubclipse

which files to ignore using to commit to SVN in eclipse


I have used Eclipse and SVN for a while. However, I'm still not clear which files/folders usually should be ignored while commit the whole project to repository. I know .project needs to be ignored. What about others? By the way this is an android project. However, answers to general project are also welcome.

Thanks.


Solution

  • We are using configuration as below to support different IDE:

    # Eclipse related (and M2e)
    .classpath
    .project
    .settings/
    .metadata/
    test-output/
    
    # Maven related (and some plugins)
    target/
    *~
    dist
    *.ser
    *.ec
    
    # Intellij
    *.ipr
    *.iml
    *.iws
    .idea
    .temp
    
    # Other
    .svn/
    bin/
    bak/
    *.log
    *.orig
    *.versionsBackup