annotate example.gitignore @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents 4c8ae668cc8c
children
rev   line source
Chris@0 1 # This file contains default .gitignore rules. To use it, copy it to .gitignore,
Chris@0 2 # and it will cause files like your settings.php and user-uploaded files to be
Chris@0 3 # excluded from Git version control. This is a common strategy to avoid
Chris@0 4 # accidentally including private information in public repositories and patch
Chris@0 5 # files.
Chris@0 6 #
Chris@0 7 # Because .gitignore can be specific to your site, this file has a different
Chris@0 8 # name; updating Drupal core will not override your custom .gitignore file.
Chris@0 9
Chris@0 10 # Ignore core when managing all of a project's dependencies with Composer
Chris@0 11 # including Drupal core.
Chris@0 12 # core
Chris@0 13
Chris@0 14 # Core's dependencies are managed with Composer.
Chris@0 15 vendor
Chris@0 16
Chris@0 17 # Ignore configuration files that may contain sensitive information.
Chris@0 18 sites/*/settings*.php
Chris@0 19 sites/*/services*.yml
Chris@0 20
Chris@0 21 # Ignore paths that contain user-generated content.
Chris@0 22 sites/*/files
Chris@0 23 sites/*/private
Chris@0 24
Chris@0 25 # Ignore SimpleTest multi-site environment.
Chris@0 26 sites/simpletest
Chris@0 27
Chris@0 28 # If you prefer to store your .gitignore file in the sites/ folder, comment
Chris@0 29 # or delete the previous settings and uncomment the following ones, instead.
Chris@0 30
Chris@0 31 # Ignore configuration files that may contain sensitive information.
Chris@0 32 # */settings*.php
Chris@0 33
Chris@0 34 # Ignore paths that contain user-generated content.
Chris@0 35 # */files
Chris@0 36 # */private
Chris@0 37
Chris@0 38 # Ignore SimpleTest multi-site environment.
Chris@0 39 # simpletest