forked from github/gitignore
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-Authored-By: Luís Pedro Algarvio <[email protected]>
- Loading branch information
1 parent
db1d52b
commit 344e52b
Showing
1 changed file
with
42 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,46 @@ | ||
# Ignore configuration files that may contain sensitive information. | ||
sites/*/*settings*.php | ||
sites/example.sites.php | ||
# gitignore template for Drupal 8 projects | ||
# | ||
# earlier versions of Drupal are tracked in `ecosystem/Python/` | ||
|
||
# Ignore paths that contain generated content. | ||
files/ | ||
sites/*/files | ||
sites/*/private | ||
sites/*/translations | ||
# Ignore configuration files that may contain sensitive information | ||
/sites/*/*settings*.php | ||
/sites/*/*services*.yml | ||
|
||
# Ignore default text files | ||
robots.txt | ||
/CHANGELOG.txt | ||
/COPYRIGHT.txt | ||
/INSTALL*.txt | ||
# Ignore paths that may contain user-generated content | ||
/sites/*/files | ||
/sites/*/public | ||
/sites/*/private | ||
/sites/*/files-public | ||
/sites/*/files-private | ||
|
||
# Ignore paths that may contain temporary files | ||
/sites/*/translations | ||
/sites/*/tmp | ||
/sites/*/cache | ||
|
||
# Ignore drupal core (if not versioning drupal sources) | ||
/core | ||
/modules/README.txt | ||
/profiles/README.txt | ||
/sites/README.txt | ||
/sites/example.sites.php | ||
/sites/example.settings.local.php | ||
/sites/development.services.yml | ||
/themes/README.txt | ||
/vendor | ||
/.csslintrc | ||
/.editorconfig | ||
/.eslintignore | ||
/.eslintrc.json | ||
/.gitattributes | ||
/.htaccess | ||
/autoload.php | ||
/composer.json | ||
/composer.lock | ||
/example.gitignore | ||
/index.php | ||
/LICENSE.txt | ||
/MAINTAINERS.txt | ||
/UPGRADE.txt | ||
/README.txt | ||
sites/README.txt | ||
sites/all/libraries/README.txt | ||
sites/all/modules/README.txt | ||
sites/all/themes/README.txt | ||
|
||
# Ignore everything but the "sites" folder ( for non core developer ) | ||
.htaccess | ||
web.config | ||
authorize.php | ||
cron.php | ||
index.php | ||
install.php | ||
update.php | ||
xmlrpc.php | ||
/includes | ||
/misc | ||
/modules | ||
/profiles | ||
/scripts | ||
/themes | ||
/robots.txt | ||
/update.php | ||
/web.config |