Last active
March 21, 2016 14:10
-
-
Save w33tmaricich/dc2adbe6a73fa2830b84 to your computer and use it in GitHub Desktop.
git: .gitignore for java eclipse projects; from http://www.bmchild.com/2012/06/git-ignore-for-java-eclipse-project.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment