Skip to content

Instantly share code, notes, and snippets.

@JustinChoi21
Last active January 23, 2018 07:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JustinChoi21/fa08b00cfe54dee29acd373fa70d61bc to your computer and use it in GitHub Desktop.
Save JustinChoi21/fa08b00cfe54dee29acd373fa70d61bc to your computer and use it in GitHub Desktop.
.gitignore Templeate
####################################################################
# How to use #
# *.a : no .a files
# !lib.a : but do track lib.a though you're ignoring .a files above
# /TODO : only ignore the root TODO file, not subdir/TODO
# build/ : ignore all files in the build/ directory
# doc/*.txt : ignore doc/dotes.txt, but not doc/server/arch.txt
####################################################################
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so
/build/
/bin/
target/
# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.war
*.ear
*.rar
*.tar
*.zip
*.db
# Logs and databases #
######################
*.log
*.sqlite
# OS generated files #
######################
.DS_Store*
ehthumbs.db
Icon?
Thumbs.db
Destktop.ini
.svn
# IDE generated files #
######################
# InteliJ
.idea
/.idea
# vscode
.vscode
/.vscode
# Eclipse
*.pydevproject
.project
.metadata
bin/**
tmp/**
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.springBeans
.loadpath
/src/main/resources/rebel.xml
# Secure files #
######################
*.pem
# composer files #
######################
/vendor
composer.lock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment