-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
47 lines (47 loc) · 1001 Bytes
/
.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
# Ignore All
*
# Don't ignore the following files
!.gitignore
!.gitattributes
!README.md
# Don't ignore the .github repo
!.github
!.github/**
# Don't ignore the doc/docs directories
!doc/
!doc/**
!docs/
!docs/**
## Don't ignore the conf directory
!conf/
## Ignore all except the local files and tpl directory
!conf/local.php
!conf/*.local.*
## template style.ini - https://www.dokuwiki.org/devel:style.ini#local_styleini
!conf/tpl/
!conf/tpl/**
## Don't ignore the data directory
!data/
!data/*
## Ignore the whole data directory, except pages, media and combo
data/*
!data/pages/
!data/pages/**
!data/media/
!data/media/**
!data/combo/
!data/combo/**
## Interwiki
## Don't ignore the lib directory
!lib/
!lib/*
## Ignore the whole data directory, except images
lib/*
## Don't ignore the images directory
!lib/images
!lib/images/*
## Ignore the whole lib/images data directory, except interwiki
lib/images/*
## Don't ignore the interwiki images directory
!lib/images/interwiki
!lib/images/interwiki/*