annotate example.gitignore @ 5:12f9dff5fda9
tip
Update to Drupal core 8.7.1
author |
Chris Cannam |
date |
Thu, 09 May 2019 15:34:47 +0100 |
parents |
c75dbcec494b |
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 # Ignore dependencies that are managed with Composer.
|
Chris@0
|
15 # Generally you should only ignore the root vendor directory. It's important
|
Chris@0
|
16 # that core/assets/vendor and any other vendor directories within contrib or
|
Chris@0
|
17 # custom module, theme, etc., are not ignored unless you purposely do so.
|
Chris@0
|
18 /vendor/
|
Chris@0
|
19
|
Chris@0
|
20 # Ignore configuration files that may contain sensitive information.
|
Chris@0
|
21 sites/*/settings*.php
|
Chris@0
|
22 sites/*/services*.yml
|
Chris@0
|
23
|
Chris@0
|
24 # Ignore paths that contain user-generated content.
|
Chris@0
|
25 sites/*/files
|
Chris@0
|
26 sites/*/private
|
Chris@0
|
27
|
Chris@0
|
28 # Ignore SimpleTest multi-site environment.
|
Chris@0
|
29 sites/simpletest
|
Chris@0
|
30
|
Chris@0
|
31 # If you prefer to store your .gitignore file in the sites/ folder, comment
|
Chris@0
|
32 # or delete the previous settings and uncomment the following ones, instead.
|
Chris@0
|
33
|
Chris@0
|
34 # Ignore configuration files that may contain sensitive information.
|
Chris@0
|
35 # */settings*.php
|
Chris@0
|
36
|
Chris@0
|
37 # Ignore paths that contain user-generated content.
|
Chris@0
|
38 # */files
|
Chris@0
|
39 # */private
|
Chris@0
|
40
|
Chris@0
|
41 # Ignore SimpleTest multi-site environment.
|
Chris@0
|
42 # simpletest
|