Created
October 25, 2015 01:35
-
-
Save cooniur/3e6fae06c2e8dc859506 to your computer and use it in GitHub Desktop.
Git Ignore File Template
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
# Project specific files (Please add your project specific files into this section) | |
# Java/Groovy specific files | |
*.class | |
*.jar | |
*.war | |
*.ear | |
# Log files | |
logs | |
*.log | |
# JVM crash logs (see http://www.java.com/en/download/help/error_hotspot.xml) | |
hs_err_pid* | |
# Build directory | |
*/target/* | |
/target/ | |
*/out/* | |
/out/ | |
# IntelliJ project | |
*.iml | |
.idea | |
# Eclipse project | |
.settings | |
.classpath | |
.project | |
# Vagrant files | |
.kitchen | |
.vagrant | |
# Sublime project files | |
*.sublime-project | |
*.sublime-workspace | |
# Mac specific files | |
.DS_Store | |
# Windows specific files | |
Desktop.ini | |
._* | |
Thumbs.db | |
ehthumbs.db | |
# Node/Bower components | |
node_modules | |
bower_components | |
# Report folders | |
report | |
coverage | |
build | |
tmp | |
e2e | |
# Runtime data | |
pids | |
*.pid | |
*.seed | |
# Files that might appear on external disks | |
.Spotlight-V100 | |
.Trashes | |
/bin/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment