Skip to content

Commit 267c1ae

Browse files
committed
git: Add a standard .gitignore file
1 parent 81a7121 commit 267c1ae

1 file changed

Lines changed: 88 additions & 0 deletions

File tree

.gitignore

Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
# Default Delphi compiler directories
2+
# Content of this directories are generated with each Compile/Construct of a project.
3+
Win32/
4+
Win64/
5+
Win64x/
6+
7+
# Delphi compiler-generated binaries (safe to delete)
8+
*.exe
9+
*.dll
10+
*.bpl
11+
*.bpi
12+
*.dcp
13+
*.so
14+
*.apk
15+
*.drc
16+
*.map
17+
*.dres
18+
*.rsm
19+
*.tds
20+
*.dcu
21+
*.lib
22+
*.a
23+
*.o
24+
*.ocx
25+
26+
# Delphi autogenerated files (duplicated info)
27+
*.cfg
28+
*.hpp
29+
*Resource.rc
30+
*.rsp
31+
32+
# Delphi local files (user-specific info)
33+
*.local
34+
*.identcache
35+
*.projdata
36+
*.tvsconfig
37+
*.dsk
38+
*.dsv
39+
40+
# Delphi history and backups
41+
__history/
42+
__recovery/
43+
*.~*
44+
45+
46+
# ------------------------------------------------------------
47+
# C++Builder specific
48+
# ------------------------------------------------------------
49+
50+
# C++Builder compiler outputs
51+
*.obj
52+
*.hpp
53+
*.ilc
54+
*.ild
55+
*.ilf
56+
*.ils
57+
*.map
58+
*.tds
59+
60+
# Precompiled headers
61+
*.pch
62+
63+
# C++Builder packages and libraries
64+
*.bpl
65+
*.bpi
66+
*.lib
67+
*.a
68+
*.dll
69+
*.so
70+
71+
# C++Builder intermediate / cache files
72+
*.cbproj.local
73+
*.cbproj.identcache
74+
*.cbproj.user
75+
*.cbtemp
76+
77+
78+
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
79+
*.stat
80+
81+
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
82+
modules/
83+
84+
# Output files
85+
*.pdf
86+
*.docx
87+
*.zip
88+
data.dat

0 commit comments

Comments
 (0)