Skip to content

Instantly share code, notes, and snippets.

@cooniur
Created October 25, 2015 01:35
Show Gist options
  • Save cooniur/3e6fae06c2e8dc859506 to your computer and use it in GitHub Desktop.
Save cooniur/3e6fae06c2e8dc859506 to your computer and use it in GitHub Desktop.
Git Ignore File Template
# 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