diff options
author | Camil Staps | 2015-02-19 18:55:43 +0100 |
---|---|---|
committer | Camil Staps | 2015-02-19 18:55:43 +0100 |
commit | 8b64ef016d37da8853695c0a6dbd5a10ae6b4f54 (patch) | |
tree | 3d78aa22188b6e3a1aeee84593a01c1095801989 /.gitignore |
directory structure
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b630aee --- /dev/null +++ b/.gitignore @@ -0,0 +1,73 @@ +# Source: http://www.bmchild.com/2012/06/git-ignore-for-java-eclipse-project.html + +# Directories # +/build/ +/bin/ +target/ + +# OS Files # +.DS_Store + +*.class + +# Package Files # +*.jar +*.war +*.ear +*.db + +###################### +# Windows +###################### + +# Windows image file caches +Thumbs.db + +# Folder config file +Desktop.ini + +###################### +# OSX +###################### + +.DS_Store +.svn + +# Thumbnails +._* + +# Files that might appear on external disk +.Spotlight-V100 +.Trashes + + +###################### +# Eclipse +###################### + +*.pydevproject +.project +.metadata +bin/** +tmp/** +tmp/**/* +*.tmp +*.bak +*.swp +*~.nib +local.properties +.classpath +.settings/ +.loadpath +/src/main/resources/rebel.xml +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# CDT-specific +.cproject + +# PDT-specific +.buildpath |