example.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. # Core's dependencies are managed with Composer.
  13. vendor
  14. # Ignore configuration files that may contain sensitive information.
  15. sites/*/settings*.php
  16. sites/*/services*.yml
  17. # Ignore paths that contain user-generated content.
  18. sites/*/files
  19. sites/*/private
  20. # Ignore SimpleTest multi-site environment.
  21. sites/simpletest
  22. # If you prefer to store your .gitignore file in the sites/ folder, comment
  23. # or delete the previous settings and uncomment the following ones, instead.
  24. # Ignore configuration files that may contain sensitive information.
  25. # */settings*.php
  26. # Ignore paths that contain user-generated content.
  27. # */files
  28. # */private
  29. # Ignore SimpleTest multi-site environment.
  30. # simpletest