.gitignore 5.2 KB

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