.gitignore 5.2 KB

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