|
1 | | -# .gitignore template for Delphi projects |
2 | | -# Based on Embarcadero documentation: |
3 | | -# http://docwiki.embarcadero.com/RADStudio/XE5/en/File_Extensions_of_Files_Generated_by_RAD_Studio |
4 | | -# Some older file types can be found here: |
5 | | -# http://delphi.wikia.com/wiki/Delphi_File_Extensions |
6 | | - |
7 | | - |
8 | | -# !!! ATTENTION !!! |
9 | | -# These types should be ignored in most cases. |
10 | | -# Leave this lines commented only if you know what you are doing. |
11 | | -# And please DO NOT store .res files in repository. Try to get rid of them. |
| 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. |
12 | 3 | # |
13 | | -# Resource files usually store project icon and version info. These should be included by means of .rc files. |
| 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. |
14 | 6 | #*.res |
15 | | -# Delphi Diagram Portfolio file. Used by the diagram editor in Delphi 7. Uncomment this if you are not using diagrams. |
| 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. |
16 | 14 | #*.ddp |
17 | | -# Visual LiveBindings file. Uncomment this if you are not using LiveBindings Designer. |
| 15 | +# |
| 16 | +# Visual LiveBindings file. Added in Delphi XE2. |
| 17 | +# Uncomment this if you are not using LiveBindings Designer. |
18 | 18 | #*.vlb |
19 | | -# Deployment Manager configuration file for your project. Uncomment this if it is not mobile development and you do not use remote debug feature. |
| 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. |
20 | 22 | #*.deployproj |
| 23 | +# |
21 | 24 |
|
22 | | - |
23 | | -# Delphi compiler-generated binaries |
| 25 | +# Delphi compiler-generated binaries (safe to delete) |
24 | 26 | *.exe |
25 | 27 | *.dll |
26 | 28 | *.bpl |
|
33 | 35 | *.dres |
34 | 36 | *.rsm |
35 | 37 | *.tds |
36 | | -*.tlb |
37 | 38 |
|
38 | 39 | # Delphi autogenerated files (duplicated info) |
39 | 40 | *.cfg |
|
0 commit comments