Last active
December 26, 2015 05:59
-
-
Save subhaze/7104975 to your computer and use it in GitHub Desktop.
personal, global, .gitignore for work
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
## Use the file below (.gitkeep) to ensure git keeps up with the directory | |
## - Useful if you need to ignore entire contents but keep the folder intact. | |
!.gitkeep | |
### OSX | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
### nodejs | |
node_modules/ | |
### fabric | |
/fabfile.* | |
### ternjs | |
.tern-port | |
### SublimeText | |
*.sublime-workspace | |
### vim | |
*.s[a-w][a-z] | |
*.un~ | |
Session.vim | |
.netrwhist | |
*~ | |
### IntelliJ | |
*.iml | |
*.ipr | |
*.iws | |
.idea/ | |
### NetBeans | |
nbproject/private/ | |
build/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
### Ignore tags created by etags and ctags | |
TAGS | |
!TAGS/ | |
tags | |
!tags/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment