.gitignore 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. ## Files related to Minetest development cycle
  34. /*.patch
  35. *.diff
  36. # GNU Patch reject file
  37. *.rej
  38. ## Non-static Minetest directories or symlinks to these
  39. /bin/
  40. /games/*
  41. !/games/devtest/
  42. /cache
  43. /textures/*
  44. !/textures/base/
  45. /screenshots
  46. /sounds
  47. /mods/*
  48. !/mods/minetest/
  49. /mods/minetest/*
  50. !/mods/minetest/mods_here.txt
  51. /worlds
  52. /world/
  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. CMakeFiles
  73. Makefile
  74. cmake_install.cmake
  75. CMakeCache.txt
  76. CPackConfig.cmake
  77. CPackSourceConfig.cmake
  78. src/test_config.h
  79. src/cmake_config.h
  80. src/cmake_config_githash.h
  81. src/unittest/test_world/world.mt
  82. src/lua/build/
  83. locale/
  84. .directory
  85. *.cbp
  86. *.layout
  87. *.o
  88. *.a
  89. *.ninja
  90. .ninja*
  91. *.gch
  92. *.iml
  93. test_config.h
  94. cmake-build-debug/
  95. cmake-build-release/
  96. cmake_config.h
  97. cmake_config_githash.h
  98. CMakeDoxy*
  99. compile_commands.json
  100. *.apk
  101. *.zip