.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. ## Editors and development environments
  2. *~
  3. *.swp
  4. *.bak*
  5. *.orig
  6. # Vim
  7. *.vim
  8. # Kate
  9. .*.kate-swp
  10. .swp.*
  11. # KDevelop4
  12. .kdev4/
  13. *.kdev4
  14. # Eclipse (CDT and LDT)
  15. .project
  16. .cproject
  17. .settings/
  18. .buildpath
  19. .metadata
  20. # GNU Global
  21. tags
  22. !tags/
  23. gtags.files
  24. .idea
  25. # Codelite
  26. *.project
  27. # Visual Studio Code
  28. .vscode/
  29. ## Files related to Minetest development cycle
  30. /*.patch
  31. *.diff
  32. # GNU Patch reject file
  33. *.rej
  34. ## Non-static Minetest directories or symlinks to these
  35. /bin/
  36. /games/*
  37. !/games/minimal/
  38. /cache
  39. /textures/*
  40. !/textures/base/
  41. /screenshots
  42. /sounds
  43. /mods/*
  44. !/mods/minetest/
  45. /mods/minetest/*
  46. !/mods/minetest/mods_here.txt
  47. /worlds
  48. /world/
  49. /clientmods/*
  50. !/clientmods/preview/
  51. /client/mod_storage/
  52. ## Configuration/log files
  53. minetest.conf
  54. debug.txt
  55. ## Other files generated by Minetest
  56. screenshot_*.png
  57. testbm.txt
  58. ## Doxygen files
  59. doc/Doxyfile
  60. doc/html/
  61. doc/doxygen_*
  62. ## MkDocs files
  63. public/
  64. doc/mkdocs/docs/*.md
  65. doc/mkdocs/mkdocs.yml
  66. ## Build files
  67. CMakeFiles
  68. Makefile
  69. !build/android/Makefile
  70. build/android/path.cfg
  71. build/android/*.apk
  72. build/android/.externalNativeBuild
  73. cmake_install.cmake
  74. CMakeCache.txt
  75. CPackConfig.cmake
  76. CPackSourceConfig.cmake
  77. src/test_config.h
  78. src/android_version.h
  79. src/android_version_githash.h
  80. src/cmake_config.h
  81. src/cmake_config_githash.h
  82. src/unittest/test_world/world.mt
  83. src/lua/build/
  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. ## Android build files
  102. build/android/src/main/assets
  103. build/android/build
  104. build/android/deps
  105. build/android/libs
  106. build/android/jni/lib
  107. build/android/jni/src
  108. build/android/src/main/jniLibs
  109. build/android/obj
  110. build/android/local.properties
  111. build/android/.gradle
  112. timestamp