Skip to content

Instantly share code, notes, and snippets.

@LeeFlannery
Created January 15, 2015 18:08
Show Gist options
  • Save LeeFlannery/6bf6c1018354dd43581b to your computer and use it in GitHub Desktop.
Save LeeFlannery/6bf6c1018354dd43581b to your computer and use it in GitHub Desktop.
core.excludes gitignore - stuff you never want.
# OSX
.DS_Store
.AppleDouble
.LSOverride
._*
# Windows
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msm
*.msp
*.lnk
# JetBrains
*.iml
.idea/
*.ipr
*.iws
out/
# Atlassian
atlassian-ide-plugin.xml
*.suo
*.user
*.userosscache
*.sln.docstates
# Dev stuff
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
build/
bld/
[Bb]in/
[Oo]bj/
node_modules
logs
*.log
@LeeFlannery
Copy link
Author

Stick this in your .gitconfig:

[core]
             # for Windows:
             excludesfile = /Users/you/.gitignore_global
             # for OSX:
             excludesfile = ~/.gitignore_global

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment