-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (36 loc) · 957 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (36 loc) · 957 Bytes
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
# The top-level fmCheckMate folder is a working folder,
# so we need to switch the priority round to ALLOW stuff
# instead of IGNORING stuff.
# This we do by first of all disallowing everything,
# and then specifically granting access to particular
# files and folders
# :
# BLACKLIST files/folders in same directory as the .gitignore file
/*
# WHITELIST files in same directory as the .gitignore file
!.gitignore
!/About the fmCheckMate folder README.md
!/LICENSE.txt
!/README.md
# BLACKLIST files in temp folder and subfolders
/temp/**/*
/xml/iDDR/**/*
# WHITELIST folders in same directory as the .gitignore file
!/bin/
!/docs/
!/test/
!/temp/
!/xml/
!/xsl/
# GLOBAL BLACKLIST - Ignore files hierarchically...
# Ignore all Mac Desktop files
**/.DS_Store
**/Icon
# Ignore all fmdiff folders
**/fmdiff/
# Ignore all oXygen XML Projects
**.xpr
# Ignore all TextMate Project property files
**/.tm_properties
# Ignore all (import.)logs
**/*.log