.gitignore 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. ## Editors and development environments
  2. *~
  3. *.swp
  4. *.bak*
  5. *.orig
  6. .DS_Store
  7. # Vim
  8. *.vim
  9. # Kate
  10. .*.kate-swp
  11. .swp.*
  12. # KDevelop4
  13. .kdev4/
  14. *.kdev4
  15. # Eclipse (CDT and LDT)
  16. .project
  17. .cproject
  18. .settings/
  19. .buildpath
  20. .metadata
  21. # GNU Global
  22. tags
  23. !tags/
  24. gtags.files
  25. .idea
  26. # Codelite
  27. *.project
  28. # Visual Studio Code & plugins
  29. .vscode/
  30. build/.cmake/
  31. # Gradle
  32. .gradle
  33. # Clang
  34. .cache
  35. ## Files related to Minetest development cycle
  36. /*.patch
  37. *.diff
  38. # GNU Patch reject file
  39. *.rej
  40. ## Non-static Minetest directories or symlinks to these
  41. /bin/
  42. /games/*
  43. !/games/devtest/
  44. /cache
  45. /textures/*
  46. !/textures/base/
  47. /screenshots
  48. /sounds
  49. /mods/*
  50. !/mods/mods_here.txt
  51. /worlds/*
  52. !/worlds/worlds_here.txt
  53. /clientmods/*
  54. !/clientmods/preview/
  55. /client/mod_storage/
  56. ## Configuration/log files
  57. minetest.conf
  58. debug.txt
  59. debug.txt.1
  60. ## Other files generated by Minetest
  61. screenshot_*.png
  62. testbm.txt
  63. ## Doxygen files
  64. doc/Doxyfile
  65. doc/html/
  66. doc/doxygen_*
  67. ## MkDocs files
  68. public/
  69. doc/mkdocs/docs/*.md
  70. doc/mkdocs/mkdocs.yml
  71. ## Build files
  72. build/
  73. CMakeFiles
  74. Makefile
  75. cmake_install.cmake
  76. CMakeCache.txt
  77. CPackConfig.cmake
  78. CPackSourceConfig.cmake
  79. src/test_config.h
  80. src/cmake_config.h
  81. src/cmake_config_githash.h
  82. src/unittest/test_world/world.mt
  83. games/devtest/mods/testnodes/textures/testnodes_generated_*.png
  84. /locale/
  85. .directory
  86. *.cbp
  87. *.layout
  88. *.o
  89. *.a
  90. *.ninja
  91. .ninja*
  92. *.gch
  93. *.iml
  94. test_config.h
  95. cmake-build-debug/
  96. cmake-build-release/
  97. cmake_config.h
  98. cmake_config_githash.h
  99. CMakeDoxy*
  100. compile_commands.json
  101. *.apk
  102. *.zip
  103. # Visual Studio
  104. *.vcxproj*
  105. *.sln
  106. .vs/
  107. # Optional user provided library folder
  108. lib/irrlichtmt
  109. # Generated mod storage database
  110. client/mod_storage.sqlite