Last active
December 10, 2015 14:28
-
-
Save SamWhited/4448140 to your computer and use it in GitHub Desktop.
My standard .gitignore file (compilation of files from https://github.com/github/gitignore)
This file contains hidden or 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
.* | |
!.gitignore | |
*~ | |
.*.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 | |
# IntelliJ IDEA | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
# OSX | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
## Thumbnails | |
._* | |
## Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# 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/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment