-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore
49 lines (35 loc) · 988 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
48
# .gitignore file setup for standard Excel template workflow
# 1 - Allow adding only files in root directory
# 2 - Exclude adding typical temp/backup/system files
# 3 - Exclude adding all subdirectories except extracted VBA and XML directories
# last updated 16/2/2019
# exclude all subdirectories (& content) unless specifically allowed
**/*
# include anything in the root directory of the repository
!/*
# exclude backup directories
**/Dev Backup/
# exclude version backup directories (including current versions)
**/Version*/
# exclude superceded development directory
**/SS
**/ss
# include extracted *.VBA & *.XML directories & contents
!/*.XML/*
!/*.VBA/*
# include Excel files in the root directory of the repository
!/*.xl*
# exclude temporary files
~$*
~$*.xl*
*.tmp
*.bak
# exclude Windows image file caches
Thumbs.db
ehthumbs.db
# exclude windows folder config file
Desktop.ini
# exclude Recycle Bin used on file shares
$RECYCLE.BIN/
# exclude Mac file
.DS_Store