-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.gitignore
80 lines (66 loc) · 1.99 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# Ignore directories generated by Composer
#
# This is currently commented out by design, as the composer generated files and
# folders are still intentionally committed to the repo.
#
# Once this workflow changes, these lines can be uncommented or moved to a
# separate file / logic.
#/drush/contrib/
#/vendor/
#/docroot/core/
#/docroot/modules/contrib/
#/docroot/modules/custom/
#/docroot/themes/contrib/
#/docroot/themes/custom/
#/docroot/profiles/contrib/
#/docroot/profiles/dropsolid_rocketship_profile/
#/docroot/libraries/
# Ignore sensitive information
/docroot/sites/*/settings.php
/docroot/sites/*/settings.local.php
# Ignore Drupal's file directory
/docroot/sites/*/files/
/private/files
/tmp/*
/secrets/*
# +----------------------------+
# | Keep .gitkeep files |
# +----------------------------+-------------------------------+
# | To keep an empty directory, add a .gitkeep file to it |
# | and ignore the directory with a wildcard: |
# | |
# | /path/to/dir/* |
# | |
# | this will ignore the content but not the directory itself. |
# | must be after any ignores |
# +------------------------------------------------------------+
!/**/.gitkeep
# Ignore SimpleTest multi-site environment.
/docroot/sites/simpletest
# Ignore osx file fingerprints
.DS_Store
# Ignore gitlab access token commits
auth.json
# Ignore IDE folders
.idea
# Lando
/drupal8.*.gz
/.lando.local.yml
/.env
/.env.local
# Launchpad
/docker-compose.local.yml
# Launchpad .gitignore begin DO NOT REMOVE OR EDIT THIS LINE
/.dlp.local.yml
/.docker-data
/.docker-sync
/.dlpenv
/docker-compose.yml
/docker-compose.override.yml
/docker-sync.yml
/mutagen.yml
/mutagen.yml.lock
*.unison.tmp
/docroot/sites/default/*.local.php
/docroot/sites/default/*.aliases.drushrc.php
# Launchpad .gitignore end DO NOT REMOVE OR EDIT THIS LINE