.gitignore 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. # This file contains default .gitignore rules. To use it, copy it to .gitignore,
  2. # and it will cause files like your settings.php and user-uploaded files to be
  3. # excluded from Git version control. This is a common strategy to avoid
  4. # accidentally including private information in public repositories and patch
  5. # files.
  6. #
  7. # Because .gitignore can be specific to your site, this file has a different
  8. # name; updating Drupal core will not override your custom .gitignore file.
  9. # Ignore core when managing all of a project's dependencies with Composer
  10. # including Drupal core.
  11. core
  12. # Ignore dependencies that are managed with Composer.
  13. # Generally you should only ignore the root vendor directory. It's important
  14. # that core/assets/vendor and any other vendor directories within contrib or
  15. # custom module, theme, etc., are not ignored unless you purposely do so.
  16. /vendor/
  17. /modules/contrib/
  18. /themes/contrib/
  19. # Ignore configuration files that may contain sensitive information.
  20. sites/*/settings*.php
  21. sites/*/services*.yml
  22. # Ignore paths that contain user-generated content.
  23. sites/*/files
  24. sites/*/private
  25. # Ignore SimpleTest multi-site environment.
  26. sites/simpletest
  27. # If you prefer to store your .gitignore file in the sites/ folder, comment
  28. # or delete the previous settings and uncomment the following ones, instead.
  29. # Ignore configuration files that may contain sensitive information.
  30. # */settings*.php
  31. # Ignore paths that contain user-generated content.
  32. # */files
  33. # */private
  34. # Ignore SimpleTest multi-site environment.
  35. simpletest