.gitignore 1.8 KB

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