.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. ## Files related to minetest development cycle
  26. /*.patch
  27. # GNU Patch reject file
  28. *.rej
  29. ## Non-static Minetest directories or symlinks to these
  30. /bin/
  31. /games/*
  32. !/games/minimal/
  33. /cache
  34. /textures/*
  35. !/textures/base/
  36. /screenshots
  37. /sounds
  38. /mods/*
  39. !/mods/minetest/
  40. /mods/minetest/*
  41. !/mods/minetest/mods_here.txt
  42. /worlds
  43. /world/
  44. ## Configuration/log files
  45. minetest.conf
  46. debug.txt
  47. ## Doxygen files
  48. doc/Doxyfile
  49. doc/html/
  50. doc/doxygen_*
  51. ## Build files
  52. CMakeFiles
  53. Makefile
  54. !build/android/Makefile
  55. cmake_install.cmake
  56. CMakeCache.txt
  57. CPackConfig.cmake
  58. CPackSourceConfig.cmake
  59. src/android_version.h
  60. src/android_version_githash.h
  61. src/cmake_config.h
  62. src/cmake_config_githash.h
  63. src/lua/build/
  64. locale/
  65. .directory
  66. *.cbp
  67. *.layout
  68. *.o
  69. *.a
  70. *.ninja
  71. .ninja*
  72. ## Android build files
  73. build/android/src/main/assets
  74. build/android/build
  75. build/android/deps
  76. build/android/libs
  77. build/android/jni/src
  78. build/android/src/main/jniLibs
  79. build/android/obj
  80. build/android/local.properties
  81. build/android/.gradle
  82. timestamp