.gitignore 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. /libraries/
  20. # Ignore configuration files that may contain sensitive information.
  21. sites/*/settings*.php
  22. sites/*/services*.yml
  23. # Ignore paths that contain user-generated content.
  24. sites/*/files
  25. sites/*/private
  26. # Ignore SimpleTest multi-site environment.
  27. sites/simpletest
  28. # If you prefer to store your .gitignore file in the sites/ folder, comment
  29. # or delete the previous settings and uncomment the following ones, instead.
  30. # Ignore configuration files that may contain sensitive information.
  31. # */settings*.php
  32. # Ignore paths that contain user-generated content.
  33. # */files
  34. # */private
  35. # Ignore SimpleTest multi-site environment.
  36. simpletest