.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. debug.txt.1
  56. ## Other files generated by Minetest
  57. screenshot_*.png
  58. testbm.txt
  59. ## Doxygen files
  60. doc/Doxyfile
  61. doc/html/
  62. doc/doxygen_*
  63. ## MkDocs files
  64. public/
  65. doc/mkdocs/docs/*.md
  66. doc/mkdocs/mkdocs.yml
  67. ## Build files
  68. CMakeFiles
  69. Makefile
  70. !build/android/Makefile
  71. build/android/path.cfg
  72. build/android/*.apk
  73. build/android/.externalNativeBuild
  74. cmake_install.cmake
  75. CMakeCache.txt
  76. CPackConfig.cmake
  77. CPackSourceConfig.cmake
  78. src/test_config.h
  79. src/android_version.h
  80. src/android_version_githash.h
  81. src/cmake_config.h
  82. src/cmake_config_githash.h
  83. src/unittest/test_world/world.mt
  84. src/lua/build/
  85. locale/
  86. .directory
  87. *.cbp
  88. *.layout
  89. *.o
  90. *.a
  91. *.ninja
  92. .ninja*
  93. *.gch
  94. *.iml
  95. test_config.h
  96. cmake-build-debug/
  97. cmake-build-release/
  98. cmake_config.h
  99. cmake_config_githash.h
  100. CMakeDoxy*
  101. compile_commands.json
  102. ## Android build files
  103. build/android/src/main/assets
  104. build/android/build
  105. build/android/deps
  106. build/android/libs
  107. build/android/jni/lib
  108. build/android/jni/src
  109. build/android/src/main/jniLibs
  110. build/android/obj
  111. build/android/local.properties
  112. build/android/.gradle
  113. timestamp