.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. # Godot auto generated files
  2. *.gen.*
  3. .import/
  4. .godot/
  5. /gen/
  6. # Godot 3.x ignores
  7. include/gen
  8. src/gen
  9. # Misc
  10. logs/*
  11. *.log
  12. # Binaries
  13. *.o
  14. *.os
  15. *.so
  16. *.obj
  17. *.bc
  18. *.pyc
  19. *.dblite
  20. *.pdb
  21. *.lib
  22. bin
  23. *.config
  24. *.creator
  25. *.creator.user
  26. *.files
  27. *.includes
  28. *.idb
  29. # Gprof output
  30. gmon.out
  31. # Vim temp files
  32. *.swo
  33. *.swp
  34. # Qt project files
  35. *.config
  36. *.creator
  37. *.creator.*
  38. *.files
  39. *.includes
  40. *.cflags
  41. *.cxxflags
  42. # Eclipse CDT files
  43. .cproject
  44. .settings/
  45. # Geany/geany-plugins files
  46. *.geany
  47. .geanyprj
  48. # Misc
  49. .DS_Store
  50. logs/
  51. # for projects that use SCons for building: http://http://www.scons.org/
  52. .sconf_temp
  53. .sconsign.dblite
  54. *.pyc
  55. # Visual C++ cache files
  56. ipch/
  57. *.aps
  58. *.ncb
  59. *.opensdf
  60. *.sdf
  61. *.cachefile
  62. *.VC.db
  63. *.VC.opendb
  64. *.VC.VC.opendb
  65. enc_temp_folder/
  66. # Visual Studio profiler
  67. *.psess
  68. *.vsp
  69. *.vspx
  70. # CodeLite project files
  71. *.project
  72. *.workspace
  73. .codelite/
  74. # Windows Azure Build Output
  75. csx/
  76. *.build.csdef
  77. # Windows Store app package directory
  78. AppPackages/
  79. # Others
  80. sql/
  81. *.Cache
  82. ClientBin/
  83. [Ss]tyle[Cc]op.*
  84. ~$*
  85. *~
  86. *.dbmdl
  87. *.dbproj.schemaview
  88. *.pfx
  89. *.publishsettings
  90. node_modules/
  91. __pycache__/
  92. # KDE
  93. .directory
  94. #Kdevelop project files
  95. *.kdev4
  96. # xCode
  97. xcuserdata
  98. # RIA/Silverlight projects
  99. Generated_Code/
  100. # Backup & report files from converting an old project file to a newer
  101. # Visual Studio version. Backup files are not needed, because we have git ;-)
  102. _UpgradeReport_Files/
  103. Backup*/
  104. UpgradeLog*.XML
  105. UpgradeLog*.htm
  106. # SQL Server files
  107. App_Data/*.mdf
  108. App_Data/*.ldf
  109. # Business Intelligence projects
  110. *.rdl.data
  111. *.bim.layout
  112. *.bim_*.settings
  113. # Microsoft Fakes
  114. FakesAssemblies/
  115. # =========================
  116. # Windows detritus
  117. # =========================
  118. # Windows image file caches
  119. Thumbs.db
  120. ehthumbs.db
  121. # Folder config file
  122. Desktop.ini
  123. # Recycle Bin used on file shares
  124. $RECYCLE.BIN/
  125. logo.h
  126. *.autosave
  127. # https://github.com/github/gitignore/blob/master/Global/Tags.gitignore
  128. # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
  129. TAGS
  130. !TAGS/
  131. tags
  132. *.tags
  133. !tags/
  134. gtags.files
  135. GTAGS
  136. GRTAGS
  137. GPATH
  138. cscope.files
  139. cscope.out
  140. cscope.in.out
  141. cscope.po.out
  142. godot.creator.*
  143. # Visual Studio 2017 and Visual Studio Code workspace folder
  144. /.vs
  145. /.vscode
  146. # Visual Studio Code workspace file
  147. *.code-workspace
  148. # Scons progress indicator
  149. .scons_node_count
  150. # ccls cache (https://github.com/MaskRay/ccls)
  151. .ccls-cache/
  152. # compile commands (https://clang.llvm.org/docs/JSONCompilationDatabase.html)
  153. compile_commands.json