.gitignore 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. # Created by https://www.gitignore.io/api/delphi
  2. # Edit at https://www.gitignore.io/?templates=delphi
  3. ### Delphi ###
  4. # Uncomment these types if you want even more clean repository. But be careful.
  5. # It can make harm to an existing project source. Read explanations below.
  6. #
  7. # Resource files are binaries containing manifest, project icon and version info.
  8. # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
  9. #*.res
  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. # Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
  14. # Uncomment this if you are not using diagrams or use newer Delphi version.
  15. *.ddp
  16. # Visual LiveBindings file. Added in Delphi XE2.
  17. # Uncomment this if you are not using LiveBindings Designer.
  18. *.vlb
  19. # Deployment Manager configuration file for your project. Added in Delphi XE2.
  20. # Uncomment this if it is not mobile development and you do not use remote debug feature.
  21. *.deployproj
  22. # C++ object files produced when C/C++ Output file generation is configured.
  23. # Uncomment this if you are not using external objects (zlib library for example).
  24. #*.obj
  25. # Delphi compiler-generated binaries (safe to delete)
  26. *.exe
  27. *.dll
  28. *.bpl
  29. *.bpi
  30. *.dcp
  31. *.so
  32. *.apk
  33. *.drc
  34. *.map
  35. *.dres
  36. *.rsm
  37. *.tds
  38. *.dcu
  39. *.lib
  40. *.a
  41. *.o
  42. *.ocx
  43. *.ppu
  44. *.bak
  45. # Delphi autogenerated files (duplicated info)
  46. *.hpp
  47. *Resource.rc
  48. # Delphi local files (user-specific info)
  49. *.local
  50. *.identcache
  51. *.projdata
  52. *.tvsconfig
  53. *.dsk
  54. *.dsv
  55. # Delphi history and backups
  56. __history/
  57. __recovery/
  58. *.~*
  59. # Castalia statistics file (since XE7 Castalia is distributed with Delphi)
  60. *.stat
  61. # Boss dependency manager vendor folder https://github.com/HashLoad/boss
  62. modules/
  63. # End of https://www.gitignore.io/api/delphi