Skip to content

Commit e0d819c

Browse files
committed
Merge pull request #882 from Arvur/master
Better Delphi .gitignore
2 parents a9c7840 + d51b1b7 commit e0d819c

File tree

1 file changed

+46
-8
lines changed

1 file changed

+46
-8
lines changed

Delphi.gitignore

Lines changed: 46 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,52 @@
1-
*.dcu
2-
*.~*
3-
*.local
4-
*.identcache
5-
__history
6-
*.drc
7-
*.map
1+
# Uncomment these types if you want even more clean repository. But be careful.
2+
# It can make harm to an existing project source. Read explanations below.
3+
#
4+
# Resource files are binaries containing manifest, project icon and version info.
5+
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6+
#*.res
7+
#
8+
# Type library file (binary). In old Delphi versions it should be stored.
9+
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10+
#*.tlb
11+
#
12+
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13+
# Uncomment this if you are not using diagrams or use newer Delphi version.
14+
#*.ddp
15+
#
16+
# Visual LiveBindings file. Added in Delphi XE2.
17+
# Uncomment this if you are not using LiveBindings Designer.
18+
#*.vlb
19+
#
20+
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21+
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22+
#*.deployproj
23+
#
24+
25+
# Delphi compiler-generated binaries (safe to delete)
826
*.exe
927
*.dll
1028
*.bpl
29+
*.bpi
1130
*.dcp
1231
*.so
1332
*.apk
14-
bin/*
33+
*.drc
34+
*.map
35+
*.dres
36+
*.rsm
37+
*.tds
38+
39+
# Delphi autogenerated files (duplicated info)
40+
*.cfg
41+
*Resource.rc
42+
43+
# Delphi local files (user-specific info)
44+
*.local
45+
*.identcache
46+
*.projdata
47+
*.tvsconfig
48+
*.dsk
49+
50+
# Delphi history and backups
51+
__history/
52+
*.~*

0 commit comments

Comments
 (0)