-
-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy path.gitignore
More file actions
74 lines (57 loc) · 1.18 KB
/
.gitignore
File metadata and controls
74 lines (57 loc) · 1.18 KB
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
# ignore all
*
# un-ignore all with extensions
!*.*
# un-ignore all directories
!*/
### Above combination will ignore all files without extensions.
### Now apply the usuage ignored files.
# FPC compiler-generated binaries (safe to delete)
*.exe
*.dll
*.so
*.dylib
*.lrs
*.res
*.compiled
*.dbg
*.ppu
*.[oa]
*.or
*.rst
*.rsj
*.lrt
# Lazarus local files (user-specific info)
*.lps
# Lazarus backups and unit output folders.
# These can be changed by user in Lazarus/project options.
backup/
*.bak*
lib/
units/
# Build output directories (pasbuild, maven-style)
target/
# Application bundle for Mac OS and other related OSX files
*.app/
.DS_Store
# We should come up with a naming convension for demo binaries to exclude existing
# and new future ones automatically.
# Ignore specific directories
prototypes/miglayout/
prototypes/fpreport/
extras/contributed/*.*
bugs/
do-not-commit/
.ide/
# Common, mostly auto-generated, files to ignore
*.html
*.maff
docs/*.inf*
*.pdf
*.bookmark
# Progress tracking documents (local working docs, not for repo)
**/progress.adoc
**/progress-*.adoc
# Per-icon .inc files generated by svg2hvif --inc (concatenated into stdhvifimages.inc)
images/hvif/*.inc
.aider*