Use this file to tell git to ignore some files we don't want in source code control:
# .gitignore # Ignore configuration files that may contain sensitive information. public/sites/*/*settings*.php !public/sites/*/default.settings.php # Ignore paths that contain generated content. backup/ cache/ public/sites/default/files public/sites/default/tmp private_files # Ignore .htaccess files since servers want them to be empty public/.htaccess