File tree Expand file tree Collapse file tree 1 file changed +62
-0
lines changed
Expand file tree Collapse file tree 1 file changed +62
-0
lines changed Original file line number Diff line number Diff line change 1+ # gitignore template for Drupal 8 projects
2+ #
3+ # earlier versions of Drupal are tracked in `community/PHP/`
4+ #
5+ # follows official upstream conventions:
6+ # https://www.drupal.org/docs/develop/using-composer
7+
8+ # Ignore configuration files that may contain sensitive information
9+ /web /sites /* /* settings * .php
10+ /web /sites /* /* services * .yml
11+
12+ # Ignore paths that may contain user-generated content
13+ /web /sites /* /files
14+ /web /sites /* /public
15+ /web /sites /* /private
16+ /web /sites /* /files-public
17+ /web /sites /* /files-private
18+
19+ # Ignore paths that may contain temporary files
20+ /web /sites /* /translations
21+ /web /sites /* /tmp
22+ /web /sites /* /cache
23+
24+ # Ignore drupal core (if not versioning drupal sources)
25+ /web /vendor
26+ /web /core
27+ /web /modules /README.txt
28+ /web /profiles /README.txt
29+ /web /sites /development.services.yml
30+ /web /sites /example.settings.local.php
31+ /web /sites /example.sites.php
32+ /web /sites /README.txt
33+ /web /themes /README.txt
34+ /web /.csslintrc
35+ /web /.editorconfig
36+ /web /.eslintignore
37+ /web /.eslintrc.json
38+ /web /.gitattributes
39+ /web /.htaccess
40+ /web /.ht.router.php
41+ /web /autoload.php
42+ /web /composer.json
43+ /web /composer.lock
44+ /web /example.gitignore
45+ /web /index.php
46+ /web /INSTALL.txt
47+ /web /LICENSE.txt
48+ /web /README.txt
49+ /web /robots.txt
50+ /web /update.php
51+ /web /web.config
52+
53+ # Ignore vendor dependencies and scripts
54+ /vendor
55+ /composer.phar
56+ /composer
57+ /robo.phar
58+ /robo
59+ /drush.phar
60+ /drush
61+ /drupal.phar
62+ /drupal
You can’t perform that action at this time.
0 commit comments