Created
December 2, 2013 21:08
-
-
Save jottr/7759011 to your computer and use it in GitHub Desktop.
Basic gitignore
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
### Linux ### | |
.* | |
!.gitignore | |
!.git* | |
*~ | |
### Windows ### | |
# Windows image file caches | |
Thumbs.db | |
ehthumbs.db | |
# Folder config file | |
Desktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
### OSX ### | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
### vim ### | |
.*.s[a-w][a-z] | |
*.un~ | |
Session.vim | |
.netrwhist | |
*~ | |
### Emacs ### | |
*~ | |
\#*\# | |
/.emacs.desktop | |
/.emacs.desktop.lock | |
.elc | |
auto-save-list | |
tramp | |
.\#* | |
# Org-mode | |
.org-id-locations | |
*_archive | |
### SublimeText ### | |
# SublimeText project files | |
*.sublime-workspace | |
### Java ### | |
*.class | |
# Package Files # | |
*.jar | |
*.war | |
*.ear | |
### Ruby ### | |
*.gem | |
*.rbc | |
.bundle | |
.config | |
coverage | |
InstalledFiles | |
lib/bundler/man | |
pkg | |
rdoc | |
spec/reports | |
test/tmp | |
test/version_tmp | |
tmp | |
# YARD artifacts | |
.yardoc | |
_yardoc | |
doc/ | |
### Rails ### | |
*.rbc | |
*.sassc | |
.sass-cache | |
capybara-*.html | |
.rspec | |
.rvmrc | |
/.bundle | |
/vendor/bundle | |
/log/* | |
/tmp/* | |
/db/*.sqlite3 | |
/public/system/* | |
/coverage/ | |
/spec/tmp/* | |
**.orig | |
rerun.txt | |
pickle-email-*.html | |
.project | |
!.keep | |
### Python ### | |
*.py[cod] | |
# C extensions | |
*.so | |
# Packages | |
*.egg | |
*.egg-info | |
dist | |
build | |
eggs | |
parts | |
bin | |
var | |
sdist | |
develop-eggs | |
.installed.cfg | |
lib | |
lib64 | |
__pycache__ | |
# Installer logs | |
pip-log.txt | |
# Unit test / coverage reports | |
.coverage | |
.tox | |
nosetests.xml | |
# Translations | |
*.mo | |
# Mr Developer | |
.mr.developer.cfg | |
.project | |
.pydevproject | |
# Rope | |
.ropeproject | |
### Eclipse ### | |
*.pydevproject | |
.project | |
.metadata | |
bin/** | |
tmp/** | |
tmp/**/* | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.classpath | |
.settings/ | |
.loadpath | |
# 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