You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Drupal.gitignore 1.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. # Ignore configuration files that may contain sensitive information
  8. /web/sites/*/*settings*.php
  9. /web/sites/*/*services*.yml
  10. # Ignore paths that may contain user-generated content
  11. /web/sites/*/files
  12. /web/sites/*/public
  13. /web/sites/*/private
  14. /web/sites/*/files-public
  15. /web/sites/*/files-private
  16. # Ignore paths that may contain temporary files
  17. /web/sites/*/translations
  18. /web/sites/*/tmp
  19. /web/sites/*/cache
  20. # Ignore drupal core (if not versioning drupal sources)
  21. /web/vendor
  22. /web/core
  23. /web/modules/README.txt
  24. /web/profiles/README.txt
  25. /web/sites/development.services.yml
  26. /web/sites/example.settings.local.php
  27. /web/sites/example.sites.php
  28. /web/sites/README.txt
  29. /web/themes/README.txt
  30. /web/.csslintrc
  31. /web/.editorconfig
  32. /web/.eslintignore
  33. /web/.eslintrc.json
  34. /web/.gitattributes
  35. /web/.htaccess
  36. /web/.ht.router.php
  37. /web/autoload.php
  38. /web/composer.json
  39. /web/composer.lock
  40. /web/example.gitignore
  41. /web/index.php
  42. /web/INSTALL.txt
  43. /web/LICENSE.txt
  44. /web/README.txt
  45. /web/robots.txt
  46. /web/update.php
  47. /web/web.config
  48. # Ignore vendor dependencies and scripts
  49. /vendor
  50. /composer.phar
  51. /composer
  52. /robo.phar
  53. /robo
  54. /drush.phar
  55. /drush
  56. /drupal.phar
  57. /drupal