.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. /games/devtest/mods/soundstuff/sounds/gitignored_sounds/*
  45. !/games/devtest/mods/soundstuff/sounds/gitignored_sounds/custom_sounds_here.txt
  46. /cache
  47. /textures/*
  48. !/textures/base/
  49. /screenshots
  50. /sounds
  51. /mods/*
  52. !/mods/mods_here.txt
  53. /worlds/*
  54. !/worlds/worlds_here.txt
  55. /clientmods/*
  56. !/clientmods/preview/
  57. /client/mod_storage/
  58. ## Configuration/log files
  59. minetest.conf
  60. debug.txt
  61. debug.txt.1
  62. ## Other files generated by Minetest
  63. screenshot_*.png
  64. testbm.txt
  65. ## Doxygen files
  66. doc/Doxyfile
  67. doc/html/
  68. doc/doxygen_*
  69. ## MkDocs files
  70. public/
  71. doc/mkdocs/docs/*.md
  72. doc/mkdocs/mkdocs.yml
  73. ## Build files
  74. build/
  75. CMakeFiles
  76. Makefile
  77. cmake_install.cmake
  78. CMakeCache.txt
  79. CPackConfig.cmake
  80. CPackSourceConfig.cmake
  81. src/test_config.h
  82. src/cmake_config.h
  83. src/cmake_config_githash.h
  84. src/unittest/test_world/world.mt
  85. games/devtest/mods/testnodes/textures/testnodes_generated_*.png
  86. /locale/
  87. .directory
  88. *.cbp
  89. *.layout
  90. *.o
  91. *.a
  92. *.ninja
  93. .ninja*
  94. *.gch
  95. *.iml
  96. test_config.h
  97. cmake-build-debug/
  98. cmake-build-release/
  99. cmake_config.h
  100. cmake_config_githash.h
  101. CMakeDoxy*
  102. compile_commands.json
  103. *.apk
  104. *.zip
  105. # Visual Studio
  106. *.vcxproj*
  107. *.sln
  108. .vs/
  109. # Optional user provided library folder
  110. lib/irrlichtmt
  111. # Generated mod storage database
  112. client/mod_storage.sqlite