.gitignore 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  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. #############################
  25. ### Godot generated files ###
  26. #############################
  27. # Buildsystem
  28. bin/
  29. *.gen.*
  30. compile_commands.json
  31. platform/windows/godot_res.res
  32. # Generated by Godot binary
  33. .import/
  34. extension_api.json
  35. logs/
  36. # Generated by unit tests
  37. tests/data/*.translation
  38. ############################
  39. ### General build output ###
  40. ############################
  41. # C/C++ generated
  42. *.a
  43. *.ax
  44. *.d
  45. *.dll
  46. *.lib
  47. *.lo
  48. *.o
  49. *.os
  50. *.ox
  51. *.Plo
  52. *.so
  53. # Binutils tmp linker output of the form "stXXXXXX" where "X" is alphanumeric
  54. 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]
  55. # Python generated
  56. __pycache__/
  57. *.pyc
  58. # Documentation
  59. doc/_build/
  60. # Android
  61. .gradle/
  62. local.properties
  63. *.iml
  64. .gradletasknamecache
  65. project.properties
  66. platform/android/java/*/.cxx/
  67. platform/android/java/*/build/
  68. platform/android/java/*/libs/
  69. # iOS
  70. *.dSYM
  71. # Javascript
  72. *.bc
  73. # Misc
  74. *.debug
  75. #############################
  76. ### IDE and tool specific ###
  77. #############################
  78. # Automake
  79. .deps/*
  80. .dirstamp
  81. # ccls
  82. .ccls-cache/
  83. # clangd
  84. .clangd/
  85. .cache/
  86. # CLion
  87. cmake-build-debug
  88. # Code::Blocks
  89. *.cbp
  90. *.layout
  91. *.depend
  92. # CodeLite
  93. *.project
  94. *.workspace
  95. .codelite/
  96. # Cppcheck
  97. *.cppcheck
  98. cppcheck-cppcheck-build-dir/
  99. # Eclipse CDT
  100. .cproject
  101. .settings/
  102. *.pydevproject
  103. *.launch
  104. # Gcov and Lcov code coverage
  105. *.gcno
  106. *.gcda
  107. *.gcov.html
  108. *.func.html
  109. *.func-sort-c.html
  110. *index-sort-f.html
  111. *index-sort-l.html
  112. *index.html
  113. godot.info
  114. amber.png
  115. emerald.png
  116. glass.png
  117. ruby.png
  118. snow.png
  119. updown.png
  120. gcov.css
  121. # Geany
  122. *.geany
  123. .geanyprj
  124. # Gprof
  125. gmon.out
  126. # Jetbrains IDEs
  127. .idea/
  128. # Kate
  129. *.kate-swp
  130. # Kdevelop
  131. *.kdev4
  132. # Qt Creator
  133. *.config
  134. *.creator
  135. *.creator.*
  136. *.files
  137. *.includes
  138. *.cflags
  139. *.cxxflags
  140. # SCons
  141. .sconf_temp
  142. .sconsign*.dblite
  143. .scons_env.json
  144. .scons_node_count
  145. # Sourcetrail
  146. *.srctrl*
  147. # Tags
  148. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  149. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  150. TAGS
  151. !TAGS/
  152. tags
  153. *.tags
  154. !tags/
  155. gtags.files
  156. GTAGS
  157. GRTAGS
  158. GPATH
  159. cscope.files
  160. cscope.out
  161. cscope.in.out
  162. cscope.po.out
  163. # Vim
  164. *.swo
  165. *.swp
  166. # Visual Studio Code
  167. .vscode/
  168. *.code-workspace
  169. .history/
  170. # Xcode
  171. xcuserdata/
  172. *.xcscmblueprint
  173. *.xccheckout
  174. *.xcodeproj/*
  175. ##############################
  176. ### Visual Studio specific ###
  177. ##############################
  178. # https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  179. # Ignore Visual Studio temporary files, build results, and
  180. # files generated by popular Visual Studio add-ons.
  181. # Actual VS project files we don't use
  182. *.sln
  183. *.vcxproj*
  184. # User-specific files
  185. *.rsuser
  186. *.suo
  187. *.user
  188. *.userosscache
  189. *.sln.docstates
  190. # User-specific files (MonoDevelop/Xamarin Studio)
  191. *.userprefs
  192. # Build results
  193. [Dd]ebug/
  194. [Dd]ebugPublic/
  195. [Rr]elease/
  196. [Rr]eleases/
  197. x64/
  198. x86/
  199. [Ww][Ii][Nn]32/
  200. [Aa][Rr][Mm]/
  201. [Aa][Rr][Mm]64/
  202. bld/
  203. [Bb]in/
  204. [Oo]bj/
  205. [Ll]og/
  206. [Ll]ogs/
  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. ~$*
  267. *.dbmdl
  268. *.dbproj.schemaview
  269. *.jfm
  270. *.pfx
  271. *.publishsettings
  272. orleans.codegen.cs
  273. # Backup & report files from converting an old project file
  274. # to a newer Visual Studio version. Backup files are not needed,
  275. # because we have git ;-)
  276. _UpgradeReport_Files/
  277. Backup*/
  278. UpgradeLog*.XML
  279. UpgradeLog*.htm
  280. ServiceFabricBackup/
  281. *.rptproj.bak
  282. # Hint file for IntelliSense
  283. cpp.hint
  284. ###################
  285. ### OS specific ###
  286. ###################
  287. # Linux
  288. *~
  289. .directory
  290. # macOS
  291. .DS_Store
  292. __MACOSX
  293. # Windows
  294. # https://github.com/github/gitignore/blob/main/Global/Windows.gitignore
  295. [Tt]humbs.db
  296. [Tt]humbs.db:encryptable
  297. ehthumbs.db
  298. ehthumbs_vista.db
  299. *.stackdump
  300. [Dd]esktop.ini
  301. $RECYCLE.BIN/
  302. *.cab
  303. *.msi
  304. *.msix
  305. *.msm
  306. *.msp
  307. *.lnk