Skip to content

Commit 10e291a

Browse files
committed
git: Add a standard .gitignore file
1 parent dc84e31 commit 10e291a

1 file changed

Lines changed: 48 additions & 38 deletions

File tree

.gitignore

Lines changed: 48 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,12 @@
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-
# C++ object files produced when C/C++ Output file generation is configured.
25-
# Uncomment this if you are not using external objects (zlib library for example).
26-
#*.obj
27-
#
28-
291
# Default Delphi compiler directories
30-
# Content of this directories are generated with each Compile/Construct of a project.
31-
# Most of the time, files here have not there place in a code repository.
32-
#Win32/
33-
#Win64/
34-
#OSX64/
35-
#OSXARM64/
36-
#Android/
37-
#Android64/
38-
#iOSDevice64/
39-
#Linux64/
2+
# Content of these directories are generated with each Compile/Construct of a project.
3+
Win32/
4+
Win64/
5+
Win64x/
406

417
# Delphi compiler-generated binaries (safe to delete)
428
*.exe
9+
*.exe.*
4310
*.dll
4411
*.bpl
4512
*.bpi
@@ -61,6 +28,7 @@
6128
*.cfg
6229
*.hpp
6330
*Resource.rc
31+
*.rsp
6432

6533
# Delphi local files (user-specific info)
6634
*.local
@@ -75,8 +43,50 @@ __history/
7543
__recovery/
7644
*.~*
7745

46+
47+
# ------------------------------------------------------------
48+
# C++Builder specific
49+
# ------------------------------------------------------------
50+
51+
# C++Builder compiler outputs
52+
*.obj
53+
*.hpp
54+
*.ilc
55+
*.ild
56+
*.ilf
57+
*.ils
58+
*.map
59+
*.tds
60+
# Program Database file that stores debugging symbols
61+
*.pdb
62+
63+
64+
# Precompiled headers
65+
*.pch
66+
67+
# C++Builder packages and libraries
68+
*.bpl
69+
*.bpi
70+
*.lib
71+
*.a
72+
*.dll
73+
*.so
74+
75+
# C++Builder intermediate / cache files
76+
*.cbproj.local
77+
*.cbproj.identcache
78+
*.cbproj.user
79+
*.cbtemp
80+
81+
7882
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
7983
*.stat
8084

8185
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
8286
modules/
87+
88+
# Output files
89+
*.pdf
90+
*.docx
91+
*.zip
92+
data.dat

0 commit comments

Comments
 (0)