.gitignore 4.3 KB

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