.gitignore 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370
  1. # Godot .gitignore config
  2. #
  3. # Aims to encompass the most commonly found files that we don't want committed
  4. # to Git, such as compilation output, IDE specific files, etc.
  5. #
  6. # It doesn't cover *all* thirdparty IDE extensions under the sun so if you have
  7. # specific needs covered here, you can add them to:
  8. # .git/info/exclude
  9. #
  10. # Or contribute them to this file if they're common enough that a good number of
  11. # users would benefit from the shared rules.
  12. #
  13. # This file is organized by sections, with subsections ordered alphabetically.
  14. # - Build configuration
  15. # - Godot generated files
  16. # - General build output
  17. # - IDE and tool specific
  18. # - Visual Studio specific
  19. # - OS specific
  20. ###########################
  21. ### Build configuration ###
  22. ###########################
  23. /custom.py
  24. misc/hooks/pre-commit-custom-*
  25. #############################
  26. ### Godot generated files ###
  27. #############################
  28. # Buildsystem
  29. bin/
  30. *.gen.*
  31. compile_commands.json
  32. platform/windows/godot_res.res
  33. # Generated by Godot binary
  34. .import/
  35. extension_api.json
  36. logs/
  37. # Generated by unit tests
  38. tests/data/*.translation
  39. ############################
  40. ### General build output ###
  41. ############################
  42. # C/C++ generated
  43. *.a
  44. *.ax
  45. *.d
  46. *.dll
  47. *.lib
  48. *.lo
  49. *.o
  50. *.os
  51. *.ox
  52. *.Plo
  53. *.so
  54. # Binutils tmp linker output of the form "stXXXXXX" where "X" is alphanumeric
  55. st[A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9][A-Za-z0-9]
  56. # Python development
  57. .venv
  58. venv
  59. # Python generated
  60. __pycache__/
  61. *.pyc
  62. # Documentation
  63. doc/_build/
  64. # Android
  65. .gradle/
  66. local.properties
  67. *.iml
  68. .gradletasknamecache
  69. project.properties
  70. platform/android/java/*/.cxx/
  71. platform/android/java/*/build/
  72. platform/android/java/*/libs/
  73. # iOS
  74. *.dSYM
  75. # Javascript
  76. *.bc
  77. platform/javascript/node_modules/
  78. # Misc
  79. *.debug
  80. #############################
  81. ### IDE and tool specific ###
  82. #############################
  83. # Automake
  84. .deps/*
  85. .dirstamp
  86. # ccls
  87. .ccls-cache/
  88. # clangd
  89. .clangd/
  90. .cache/
  91. # CLion
  92. cmake-build-debug
  93. # Code::Blocks
  94. *.cbp
  95. *.layout
  96. *.depend
  97. # CodeLite
  98. *.project
  99. *.workspace
  100. .codelite/
  101. # Cppcheck
  102. *.cppcheck
  103. cppcheck-cppcheck-build-dir/
  104. # Eclipse CDT
  105. .cproject
  106. .settings/
  107. *.pydevproject
  108. *.launch
  109. # Emacs
  110. \#*\#
  111. .\#*
  112. # GCOV code coverage
  113. *.gcda
  114. *.gcno
  115. # Geany
  116. *.geany
  117. .geanyprj
  118. # Gprof
  119. gmon.out
  120. # Jetbrains IDEs
  121. .idea/
  122. .fleet/
  123. # Kate
  124. *.kate-swp
  125. # Kdevelop
  126. *.kdev4
  127. # Qt Creator
  128. *.config
  129. *.creator
  130. *.creator.*
  131. *.files
  132. *.includes
  133. *.cflags
  134. *.cxxflags
  135. # SCons
  136. .sconf_temp
  137. .sconsign*.dblite
  138. .scons_env.json
  139. .scons_node_count
  140. # Sourcetrail
  141. *.srctrl*
  142. # Tags
  143. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  144. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  145. TAGS
  146. !TAGS/
  147. tags
  148. *.tags
  149. !tags/
  150. gtags.files
  151. GTAGS
  152. GRTAGS
  153. GPATH
  154. cscope.files
  155. cscope.out
  156. cscope.in.out
  157. cscope.po.out
  158. # Vim
  159. *.swo
  160. *.swp
  161. # Visual Studio Code
  162. .vscode/
  163. *.code-workspace
  164. .history/
  165. # Xcode
  166. xcuserdata/
  167. *.xcscmblueprint
  168. *.xccheckout
  169. *.xcodeproj/*
  170. ##############################
  171. ### Visual Studio specific ###
  172. ##############################
  173. # https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  174. # Ignore Visual Studio temporary files, build results, and
  175. # files generated by popular Visual Studio add-ons.
  176. # Actual VS project files we don't use
  177. *.sln
  178. *.vcxproj*
  179. # User-specific files
  180. *.rsuser
  181. *.suo
  182. *.user
  183. *.userosscache
  184. *.sln.docstates
  185. # User-specific files (MonoDevelop/Xamarin Studio)
  186. *.userprefs
  187. # Build results
  188. [Dd]ebug/
  189. [Dd]ebugPublic/
  190. [Rr]elease/
  191. [Rr]eleases/
  192. x64/
  193. x86/
  194. [Ww][Ii][Nn]32/
  195. [Aa][Rr][Mm]/
  196. [Aa][Rr][Mm]64/
  197. bld/
  198. [Bb]in/
  199. [Oo]bj/
  200. [Ll]og/
  201. [Ll]ogs/
  202. # Do not ignore arch-specific folders anywhere under thirdparty libraries
  203. !thirdparty/**/x64/
  204. !thirdparty/**/x86/
  205. !thirdparty/**/arm/
  206. !thirdparty/**/arm64/
  207. # Visual Studio 2015/2017 cache/options directory
  208. .vs/
  209. # Visual Studio 2017 auto generated files
  210. Generated\ Files/
  211. # Files built by Visual Studio
  212. *_i.c
  213. *_p.c
  214. *_h.h
  215. *.ilk
  216. *.meta
  217. *.obj
  218. *.iobj
  219. *.pch
  220. *.pdb
  221. *.ipdb
  222. *.pgc
  223. *.pgd
  224. *.rsp
  225. *.sbr
  226. *.tlb
  227. *.tli
  228. *.tlh
  229. *.tmp
  230. *.tmp_proj
  231. *_wpftmp.csproj
  232. *.log
  233. *.tlog
  234. *.vspscc
  235. *.vssscc
  236. .builds
  237. *.pidb
  238. *.svclog
  239. *.scc
  240. # Visual C++ cache files
  241. ipch/
  242. *.aps
  243. *.ncb
  244. *.opendb
  245. *.opensdf
  246. *.sdf
  247. *.cachefile
  248. *.VC.db
  249. *.VC.VC.opendb
  250. # Visual Studio profiler
  251. *.psess
  252. *.vsp
  253. *.vspx
  254. *.sap
  255. # Visual Studio Trace Files
  256. *.e2e
  257. # ReSharper is a .NET coding add-in
  258. _ReSharper*/
  259. *.[Rr]e[Ss]harper
  260. *.DotSettings.user
  261. # Visual Studio cache files
  262. # files ending in .cache can be ignored
  263. *.[Cc]ache
  264. # Others
  265. ClientBin/
  266. enc_temp_folder/
  267. ~$*
  268. *.dbmdl
  269. *.dbproj.schemaview
  270. *.jfm
  271. *.pfx
  272. *.publishsettings
  273. orleans.codegen.cs
  274. # Backup & report files from converting an old project file
  275. # to a newer Visual Studio version. Backup files are not needed,
  276. # because we have git ;-)
  277. _UpgradeReport_Files/
  278. Backup*/
  279. UpgradeLog*.XML
  280. UpgradeLog*.htm
  281. ServiceFabricBackup/
  282. *.rptproj.bak
  283. # Hint file for IntelliSense
  284. cpp.hint
  285. ###################
  286. ### OS specific ###
  287. ###################
  288. # Linux
  289. *~
  290. .directory
  291. # macOS
  292. .DS_Store
  293. __MACOSX
  294. # Windows
  295. # https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
  296. [Tt]humbs.db
  297. [Tt]humbs.db:encryptable
  298. ehthumbs.db
  299. ehthumbs_vista.db
  300. *.stackdump
  301. [Dd]esktop.ini
  302. $RECYCLE.BIN/
  303. *.cab
  304. *.msi
  305. *.msix
  306. *.msm
  307. *.msp
  308. *.lnk