.gitignore 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319
  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. # Visual Studio cache/options directory
  78. .vs/
  79. # MSTest test Results
  80. [Tt]est[Rr]esult*/
  81. [Bb]uild[Ll]og.*
  82. # Hints for improving IntelliSense, created together with VS project
  83. cpp.hint
  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. __pycache__/
  199. # KDE
  200. .directory
  201. #Kdevelop project files
  202. *.kdev4
  203. # xCode
  204. xcuserdata
  205. # RIA/Silverlight projects
  206. Generated_Code/
  207. # Backup & report files from converting an old project file to a newer
  208. # Visual Studio version. Backup files are not needed, because we have git ;-)
  209. _UpgradeReport_Files/
  210. Backup*/
  211. UpgradeLog*.XML
  212. UpgradeLog*.htm
  213. # SQL Server files
  214. App_Data/*.mdf
  215. App_Data/*.ldf
  216. # Business Intelligence projects
  217. *.rdl.data
  218. *.bim.layout
  219. *.bim_*.settings
  220. # Microsoft Fakes
  221. FakesAssemblies/
  222. # =========================
  223. # Windows detritus
  224. # =========================
  225. # Windows image file caches
  226. Thumbs.db
  227. ehthumbs.db
  228. # Folder config file
  229. Desktop.ini
  230. # Recycle Bin used on file shares
  231. $RECYCLE.BIN/
  232. logo.h
  233. *.autosave
  234. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  235. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  236. TAGS
  237. !TAGS/
  238. tags
  239. *.tags
  240. !tags/
  241. gtags.files
  242. GTAGS
  243. GRTAGS
  244. GPATH
  245. cscope.files
  246. cscope.out
  247. cscope.in.out
  248. cscope.po.out
  249. godot.creator.*
  250. projects/
  251. platform/windows/godot_res.res
  252. # Visual Studio 2017 and Visual Studio Code workspace folder
  253. /.vs
  254. /.vscode
  255. # Visual Studio Code workspace file
  256. *.code-workspace
  257. # Scons progress indicator
  258. .scons_node_count