.gitignore 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  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 code coverage
  111. *.gcda
  112. *.gcno
  113. # Geany
  114. *.geany
  115. .geanyprj
  116. # Gprof
  117. gmon.out
  118. # Jetbrains IDEs
  119. .idea/
  120. .fleet/
  121. # Kate
  122. *.kate-swp
  123. # Kdevelop
  124. *.kdev4
  125. # Qt Creator
  126. *.config
  127. *.creator
  128. *.creator.*
  129. *.files
  130. *.includes
  131. *.cflags
  132. *.cxxflags
  133. # SCons
  134. .sconf_temp
  135. .sconsign*.dblite
  136. .scons_env.json
  137. .scons_node_count
  138. # Sourcetrail
  139. *.srctrl*
  140. # Tags
  141. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  142. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  143. TAGS
  144. !TAGS/
  145. tags
  146. *.tags
  147. !tags/
  148. gtags.files
  149. GTAGS
  150. GRTAGS
  151. GPATH
  152. cscope.files
  153. cscope.out
  154. cscope.in.out
  155. cscope.po.out
  156. # Vim
  157. *.swo
  158. *.swp
  159. # Visual Studio Code
  160. .vscode/
  161. *.code-workspace
  162. .history/
  163. # Xcode
  164. xcuserdata/
  165. *.xcscmblueprint
  166. *.xccheckout
  167. *.xcodeproj/*
  168. ##############################
  169. ### Visual Studio specific ###
  170. ##############################
  171. # https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  172. # Ignore Visual Studio temporary files, build results, and
  173. # files generated by popular Visual Studio add-ons.
  174. # Actual VS project files we don't use
  175. *.sln
  176. *.vcxproj*
  177. # User-specific files
  178. *.rsuser
  179. *.suo
  180. *.user
  181. *.userosscache
  182. *.sln.docstates
  183. # User-specific files (MonoDevelop/Xamarin Studio)
  184. *.userprefs
  185. # Build results
  186. [Dd]ebug/
  187. [Dd]ebugPublic/
  188. [Rr]elease/
  189. [Rr]eleases/
  190. x64/
  191. x86/
  192. [Ww][Ii][Nn]32/
  193. [Aa][Rr][Mm]/
  194. [Aa][Rr][Mm]64/
  195. bld/
  196. [Bb]in/
  197. [Oo]bj/
  198. [Ll]og/
  199. [Ll]ogs/
  200. # Do not ignore arch-specific folders anywhere under thirdparty libraries
  201. !thirdparty/**/x64/
  202. !thirdparty/**/x86/
  203. !thirdparty/**/arm/
  204. !thirdparty/**/arm64/
  205. # Visual Studio 2015/2017 cache/options directory
  206. .vs/
  207. # Visual Studio 2017 auto generated files
  208. Generated\ Files/
  209. # Files built by Visual Studio
  210. *_i.c
  211. *_p.c
  212. *_h.h
  213. *.ilk
  214. *.meta
  215. *.obj
  216. *.iobj
  217. *.pch
  218. *.pdb
  219. *.ipdb
  220. *.pgc
  221. *.pgd
  222. *.rsp
  223. *.sbr
  224. *.tlb
  225. *.tli
  226. *.tlh
  227. *.tmp
  228. *.tmp_proj
  229. *_wpftmp.csproj
  230. *.log
  231. *.tlog
  232. *.vspscc
  233. *.vssscc
  234. .builds
  235. *.pidb
  236. *.svclog
  237. *.scc
  238. # Visual C++ cache files
  239. ipch/
  240. *.aps
  241. *.ncb
  242. *.opendb
  243. *.opensdf
  244. *.sdf
  245. *.cachefile
  246. *.VC.db
  247. *.VC.VC.opendb
  248. # Visual Studio profiler
  249. *.psess
  250. *.vsp
  251. *.vspx
  252. *.sap
  253. # Visual Studio Trace Files
  254. *.e2e
  255. # ReSharper is a .NET coding add-in
  256. _ReSharper*/
  257. *.[Rr]e[Ss]harper
  258. *.DotSettings.user
  259. # Visual Studio cache files
  260. # files ending in .cache can be ignored
  261. *.[Cc]ache
  262. # Others
  263. ClientBin/
  264. enc_temp_folder/
  265. ~$*
  266. *.dbmdl
  267. *.dbproj.schemaview
  268. *.jfm
  269. *.pfx
  270. *.publishsettings
  271. orleans.codegen.cs
  272. # Backup & report files from converting an old project file
  273. # to a newer Visual Studio version. Backup files are not needed,
  274. # because we have git ;-)
  275. _UpgradeReport_Files/
  276. Backup*/
  277. UpgradeLog*.XML
  278. UpgradeLog*.htm
  279. ServiceFabricBackup/
  280. *.rptproj.bak
  281. # Hint file for IntelliSense
  282. cpp.hint
  283. ###################
  284. ### OS specific ###
  285. ###################
  286. # Linux
  287. *~
  288. .directory
  289. # macOS
  290. .DS_Store
  291. __MACOSX
  292. # Windows
  293. # https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
  294. [Tt]humbs.db
  295. [Tt]humbs.db:encryptable
  296. ehthumbs.db
  297. ehthumbs_vista.db
  298. *.stackdump
  299. [Dd]esktop.ini
  300. $RECYCLE.BIN/
  301. *.cab
  302. *.msi
  303. *.msix
  304. *.msm
  305. *.msp
  306. *.lnk