2
0

.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. # Created by https://www.gitignore.io/api/delphi,lazarus,freepascal
  2. ### Delphi ###
  3. # Uncomment these types if you want even more clean repository. But be careful.
  4. # It can make harm to an existing project source. Read explanations below.
  5. #
  6. # Resource files are binaries containing manifest, project icon and version info.
  7. # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
  8. #*.res
  9. #
  10. # Type library file (binary). In old Delphi versions it should be stored.
  11. # Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
  12. #*.tlb
  13. #
  14. # Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
  15. # Uncomment this if you are not using diagrams or use newer Delphi version.
  16. #*.ddp
  17. #
  18. # Visual LiveBindings file. Added in Delphi XE2.
  19. # Uncomment this if you are not using LiveBindings Designer.
  20. #*.vlb
  21. #
  22. # Deployment Manager configuration file for your project. Added in Delphi XE2.
  23. # Uncomment this if it is not mobile development and you do not use remote debug feature.
  24. #*.deployproj
  25. #
  26. # C++ object files produced when C/C++ Output file generation is configured.
  27. # Uncomment this if you are not using external objects (zlib library for example).
  28. #*.obj
  29. #
  30. # Delphi compiler-generated binaries (safe to delete)
  31. *.exe
  32. *.dll
  33. *.bpl
  34. *.bpi
  35. *.dcp
  36. *.so
  37. *.apk
  38. *.drc
  39. *.map
  40. *.dres
  41. *.rsm
  42. *.tds
  43. *.dcu
  44. *.lib
  45. *.a
  46. *.o
  47. *.ocx
  48. # Delphi autogenerated files (duplicated info)
  49. *.cfg
  50. *.hpp
  51. *Resource.rc
  52. # Delphi local files (user-specific info)
  53. *.local
  54. *.identcache
  55. *.projdata
  56. *.tvsconfig
  57. *.dsk
  58. # Delphi history and backups
  59. __history/
  60. __recovery/
  61. *.~*
  62. # Castalia statistics file (since XE7 Castalia is distributed with Delphi)
  63. *.stat
  64. ### FreePascal ###
  65. *.lps
  66. *.compiled
  67. *.[oa]
  68. *.ppu
  69. *.rst
  70. *.cgi
  71. *.log
  72. *.bak*
  73. fp.ini
  74. fp.cfg
  75. fp.dsk
  76. ### Lazarus ###
  77. # Lazarus compiler-generated binaries (safe to delete)
  78. *.dylib
  79. *.lrs
  80. *.res
  81. *.dbg
  82. *.or
  83. # Lazarus autogenerated files (duplicated info)
  84. *.rsj
  85. *.lrt
  86. # Lazarus local files (user-specific info)
  87. # Lazarus backups and unit output folders.
  88. # These can be changed by user in Lazarus/project options.
  89. backup/
  90. *.bak
  91. lib/
  92. # Application bundle for Mac OS
  93. *.app/
  94. # End of https://www.gitignore.io/api/delphi,lazarus,freepascal