Last active
August 29, 2015 14:01
-
-
Save danielnv18/f801f1b43ceebfdd69b6 to your computer and use it in GitHub Desktop.
Git ignore for drupal projects
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
# Ignore configuration files that may contain sensitive information. | |
sites/*/settings*.php | |
# Ignore paths that contain user-generated content. | |
/sites/*/files | |
/sites/*/private | |
/files/* | |
/cache | |
# Packages # | |
############ | |
*.7z | |
*.dmg | |
*.gz | |
*.bz2 | |
*.iso | |
*.jar | |
*.rar | |
*.tar | |
*.zip | |
*.tgz | |
# Logs and databases # | |
###################### | |
*.log | |
*.sql | |
# OS generated files # | |
###################### | |
.DS_Store* | |
ehthumbs.db | |
Icon? | |
Thumbs.db | |
._* | |
# Vim generated files # | |
###################### | |
*.un~ | |
# SASS # | |
########## | |
.sass-cache | |
sites/all/themes/*/.sass-cache/* | |
# Nodejs Modules # | |
################# | |
sites/all/themes/*/node_modules/* | |
# IDE Files # | |
############# | |
/.idea/ | |
/nbproject/ | |
# Vagrant & Puppet # | |
#################### | |
/.vagrant/* | |
# SVN Files # | |
#################### | |
.svn/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment