.gitignore 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. # Godot auto generated files
  2. *.gen.*
  3. # Documentation generated by doxygen or from classes.xml
  4. doc/_build/
  5. # Javascript specific
  6. *.bc
  7. # Android specific
  8. platform/android/java/build.gradle
  9. platform/android/java/.gradle
  10. platform/android/java/.gradletasknamecache
  11. platform/android/java/local.properties
  12. platform/android/java/project.properties
  13. platform/android/java/build.gradle
  14. platform/android/java/AndroidManifest.xml
  15. platform/android/java/libs/*
  16. platform/android/java/assets
  17. platform/android/java/.idea/*
  18. platform/android/java/*.iml
  19. # General c++ generated files
  20. *.lib
  21. *.o
  22. *.ox
  23. *.a
  24. *.ax
  25. *.d
  26. *.so
  27. *.os
  28. *.Plo
  29. *.lo
  30. # Libs generated files
  31. .deps/*
  32. .dirstamp
  33. # Gprof output
  34. gmon.out
  35. # Vim temp files
  36. *.swo
  37. *.swp
  38. # QT project files
  39. *.config
  40. *.creator
  41. *.creator.*
  42. *.files
  43. *.includes
  44. # Eclipse CDT files
  45. .cproject
  46. .settings/
  47. # Geany/geany-plugins files
  48. *.geany
  49. .geanyprj
  50. # Misc
  51. .DS_Store
  52. logs/
  53. # for projects that use SCons for building: http://http://www.scons.org/
  54. .sconf_temp
  55. .sconsign.dblite
  56. *.pyc
  57. # https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
  58. ## Ignore Visual Studio temporary files, build results, and
  59. ## files generated by popular Visual Studio add-ons.
  60. # User-specific files
  61. *.suo
  62. *.user
  63. *.sln.docstates
  64. *.sln
  65. *.vcxproj*
  66. # Build results
  67. [Dd]ebug/
  68. [Dd]ebugPublic/
  69. [Rr]elease/
  70. x64/
  71. build/
  72. bld/
  73. [Bb]in/
  74. [Oo]bj/
  75. *.debug
  76. *.dSYM
  77. # MSTest test Results
  78. [Tt]est[Rr]esult*/
  79. [Bb]uild[Ll]og.*
  80. # Hints for improving IntelliSense, created together with VS project
  81. cpp.hint
  82. # Visualizers for the VS debugger
  83. *.natvis
  84. #NUNIT
  85. *.VisualState.xml
  86. TestResult.xml
  87. *.o
  88. *.a
  89. *_i.c
  90. *_p.c
  91. *_i.h
  92. *.ilk
  93. *.meta
  94. *.obj
  95. *.pch
  96. *.pdb
  97. *.pgc
  98. *.pgd
  99. *.rsp
  100. *.sbr
  101. *.tlb
  102. *.tli
  103. *.tlh
  104. *.tmp
  105. *.tmp_proj
  106. *.log
  107. *.vspscc
  108. *.vssscc
  109. .builds
  110. *.pidb
  111. *.svclog
  112. *.scc
  113. # Chutzpah Test files
  114. _Chutzpah*
  115. # Visual C++ cache files
  116. ipch/
  117. *.aps
  118. *.ncb
  119. *.opensdf
  120. *.sdf
  121. *.cachefile
  122. *.VC.db
  123. *.VC.opendb
  124. *.VC.VC.opendb
  125. enc_temp_folder/
  126. # Visual Studio profiler
  127. *.psess
  128. *.vsp
  129. *.vspx
  130. # CodeLite project files
  131. *.project
  132. *.workspace
  133. .codelite/
  134. # TFS 2012 Local Workspace
  135. $tf/
  136. # Guidance Automation Toolkit
  137. *.gpState
  138. # ReSharper is a .NET coding add-in
  139. _ReSharper*/
  140. *.[Rr]e[Ss]harper
  141. *.DotSettings.user
  142. # JustCode is a .NET coding addin-in
  143. .JustCode
  144. # TeamCity is a build add-in
  145. _TeamCity*
  146. # DotCover is a Code Coverage Tool
  147. *.dotCover
  148. # NCrunch
  149. *.ncrunch*
  150. _NCrunch_*
  151. .*crunch*.local.xml
  152. # MightyMoose
  153. *.mm.*
  154. AutoTest.Net/
  155. # Web workbench (sass)
  156. .sass-cache/
  157. # Installshield output folder
  158. [Ee]xpress/
  159. # DocProject is a documentation generator add-in
  160. DocProject/buildhelp/
  161. DocProject/Help/*.HxT
  162. DocProject/Help/*.HxC
  163. DocProject/Help/*.hhc
  164. DocProject/Help/*.hhk
  165. DocProject/Help/*.hhp
  166. DocProject/Help/Html2
  167. DocProject/Help/html
  168. # Click-Once directory
  169. publish/
  170. # Publish Web Output
  171. *.[Pp]ublish.xml
  172. *.azurePubxml
  173. # NuGet Packages Directory
  174. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  175. #packages/*
  176. ## TODO: If the tool you use requires repositories.config, also uncomment the next line
  177. #!packages/repositories.config
  178. # Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
  179. # This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
  180. !packages/build/
  181. # Windows Azure Build Output
  182. csx/
  183. *.build.csdef
  184. # Windows Store app package directory
  185. AppPackages/
  186. # Others
  187. sql/
  188. *.Cache
  189. ClientBin/
  190. [Ss]tyle[Cc]op.*
  191. ~$*
  192. *~
  193. *.dbmdl
  194. *.dbproj.schemaview
  195. *.pfx
  196. *.publishsettings
  197. node_modules/
  198. # KDE
  199. .directory
  200. #Kdevelop project files
  201. *.kdev4
  202. # xCode
  203. xcuserdata
  204. # RIA/Silverlight projects
  205. Generated_Code/
  206. # Backup & report files from converting an old project file to a newer
  207. # Visual Studio version. Backup files are not needed, because we have git ;-)
  208. _UpgradeReport_Files/
  209. Backup*/
  210. UpgradeLog*.XML
  211. UpgradeLog*.htm
  212. # SQL Server files
  213. App_Data/*.mdf
  214. App_Data/*.ldf
  215. # Business Intelligence projects
  216. *.rdl.data
  217. *.bim.layout
  218. *.bim_*.settings
  219. # Microsoft Fakes
  220. FakesAssemblies/
  221. # =========================
  222. # Windows detritus
  223. # =========================
  224. # Windows image file caches
  225. Thumbs.db
  226. ehthumbs.db
  227. # Folder config file
  228. Desktop.ini
  229. # Recycle Bin used on file shares
  230. $RECYCLE.BIN/
  231. logo.h
  232. *.autosave
  233. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  234. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  235. TAGS
  236. !TAGS/
  237. tags
  238. !tags/
  239. gtags.files
  240. GTAGS
  241. GRTAGS
  242. GPATH
  243. cscope.files
  244. cscope.out
  245. cscope.in.out
  246. cscope.po.out
  247. godot.creator.*
  248. projects/
  249. platform/windows/godot_res.res
  250. # Visual Studio 2017 and Visual Studio Code workspace folder
  251. /.vs
  252. /.vscode
  253. # Visual Studio Code workspace file
  254. *.code-workspace
  255. # Scons progress indicator
  256. .scons_node_count