-
-
Save damoclark/c0be20da9a19cbcf39e0 to your computer and use it in GitHub Desktop.
My global git ignore file, added with command git config --global core.excludesfile <path to this file>
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
#global git ignore file, add with command git config --global core.excludesfile <path to this file> | |
# Testing scripts # | |
################### | |
test-*.php | |
# Typescripts # | |
################### | |
typescript* | |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# 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 | |
*.rar | |
*.tar | |
*.zip | |
# Editors and IDEs # | |
#################### | |
*.komodoproject | |
*.komodotools | |
.idea/ | |
# Logs and databases # | |
###################### | |
*.log | |
*.sqlite | |
# Generic config files # | |
######################## | |
*.ini | |
*.conf | |
# OS generated files # | |
###################### | |
.DS_Store | |
.DS_Store? | |
._* | |
.Spotlight-V100 | |
.Trashes | |
ehthumbs.db | |
Thumbs.db | |
# 3rd party loaded libraries # | |
############################## | |
vendor/ | |
node_modules/ | |
# Smarty compiled templates | |
############################## | |
smarty/templates_c/* | |
templates/ | |
# phpunit cache file | |
.phpunit.result.cache | |
# Project Specific | |
!tests/etc/*.ini |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment