.gitignore 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. civetweb
  2. civetweb_test
  3. libcivetweb.a
  4. libcivetweb.so
  5. libcivetweb.so.*
  6. *-cache
  7. out
  8. *.dmg
  9. *.msi
  10. *.exe
  11. *.zip
  12. *.trace
  13. [oO]utput
  14. [tT]esting
  15. examples/embedded_c/embedded_c
  16. examples/embedded_cpp/embedded_cpp
  17. *.a
  18. *.o
  19. VisualStudio/unit_test/*
  20. log.out
  21. ################# //hash
  22. ## CMake
  23. #################
  24. /CMakeCache.txt
  25. /CMakeFiles
  26. /mingw-builds
  27. #################
  28. ## Eclipse
  29. #################
  30. *.pydevproject
  31. .project
  32. .metadata
  33. bin/
  34. tmp/
  35. *.tmp
  36. *.bak
  37. *.swp
  38. *~.nib
  39. local.properties
  40. .classpath
  41. .settings/
  42. .loadpath
  43. # External tool builders
  44. .externalToolBuilders/
  45. # Locally stored "Eclipse launch configurations"
  46. *.launch
  47. # CDT-specific
  48. .cproject
  49. # PDT-specific
  50. .buildpath
  51. #################
  52. ## Visual Studio
  53. #################
  54. ## Ignore Visual Studio temporary files, build results, and
  55. ## files generated by popular Visual Studio add-ons.
  56. # User-specific files
  57. *.suo
  58. *.user
  59. *.sln.docstates
  60. # Text-mode IDE tools
  61. cscope.out
  62. tags
  63. # Build results
  64. [Dd]ebug/
  65. [Dd]ebug CONSOLE/
  66. [Rr]elease/
  67. x64/
  68. [Bb]in/
  69. [Oo]bj/
  70. # MSTest test Results
  71. [Tt]est[Rr]esult*/
  72. [Bb]uild[Ll]og.*
  73. *_i.c
  74. *_p.c
  75. *.ilk
  76. *.meta
  77. *.obj
  78. *.pch
  79. *.pdb
  80. *.pgc
  81. *.pgd
  82. *.rsp
  83. *.sbr
  84. *.tlb
  85. *.tli
  86. *.tlh
  87. *.tmp
  88. *.tmp_proj
  89. *.log
  90. *.vspscc
  91. *.vssscc
  92. .builds
  93. *.pidb
  94. *.log
  95. *.scc
  96. # Visual C++ cache files
  97. ipch/
  98. *.aps
  99. *.ncb
  100. *.opensdf
  101. *.sdf
  102. *.cachefile
  103. *.VC.db
  104. *.VC.VC.opendb
  105. # Visual Studio profiler
  106. *.psess
  107. *.vsp
  108. *.vspx
  109. # Guidance Automation Toolkit
  110. *.gpState
  111. # ReSharper is a .NET coding add-in
  112. _ReSharper*/
  113. *.[Rr]e[Ss]harper
  114. # TeamCity is a build add-in
  115. _TeamCity*
  116. # DotCover is a Code Coverage Tool
  117. *.dotCover
  118. # NCrunch
  119. *.ncrunch*
  120. .*crunch*.local.xml
  121. # Installshield output folder
  122. [Ee]xpress/
  123. # DocProject is a documentation generator add-in
  124. DocProject/buildhelp/
  125. DocProject/Help/*.HxT
  126. DocProject/Help/*.HxC
  127. DocProject/Help/*.hhc
  128. DocProject/Help/*.hhk
  129. DocProject/Help/*.hhp
  130. DocProject/Help/Html2
  131. DocProject/Help/html
  132. # Click-Once directory
  133. publish/
  134. # Publish Web Output
  135. *.Publish.xml
  136. *.pubxml
  137. # NuGet Packages Directory
  138. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  139. #packages/
  140. # Windows Azure Build Output
  141. csx
  142. *.build.csdef
  143. # Windows Store app package directory
  144. AppPackages/
  145. # Others
  146. sql/
  147. *.Cache
  148. ClientBin/
  149. [Ss]tyle[Cc]op.*
  150. ~$*
  151. *~
  152. *.dbmdl
  153. *.[Pp]ublish.xml
  154. *.pfx
  155. *.publishsettings
  156. # RIA/Silverlight projects
  157. Generated_Code/
  158. # Backup & report files from converting an old project file to a newer
  159. # Visual Studio version. Backup files are not needed, because we have git ;-)
  160. _UpgradeReport_Files/
  161. Backup*/
  162. UpgradeLog*.XML
  163. UpgradeLog*.htm
  164. # SQL Server files
  165. App_Data/*.mdf
  166. App_Data/*.ldf
  167. #############
  168. ## Windows detritus
  169. #############
  170. # Windows image file caches
  171. Thumbs.db
  172. ehthumbs.db
  173. # Folder config file
  174. Desktop.ini
  175. # Recycle Bin used on file shares
  176. $RECYCLE.BIN/
  177. # Mac crap
  178. .DS_Store
  179. #############
  180. ## Python
  181. #############
  182. *.py[co]
  183. # Packages
  184. *.egg
  185. *.egg-info
  186. dist/
  187. eggs/
  188. parts/
  189. var/
  190. sdist/
  191. develop-eggs/
  192. .installed.cfg
  193. # Installer logs
  194. pip-log.txt
  195. # Unit test / coverage reports
  196. .coverage
  197. .tox
  198. #Translations
  199. *.mo
  200. #Mr Developer
  201. .mr.developer.cfg
  202. ##########################
  203. ## Files created by tests
  204. ##########################
  205. requests.db
  206. ##########################
  207. ## Files created by ctags
  208. ##########################
  209. ?tags
  210. ?tags?
  211. ##########################
  212. ## Files created by autotools
  213. ##########################
  214. *.lo
  215. .libs
  216. ##########################
  217. ## Travis Build Dir
  218. ##########################
  219. ci/lua
  220. ##########################
  221. ## Conan test cache
  222. ##########################
  223. conan/test_package/build
  224. ##########################
  225. ## Visual Studio Code
  226. ##########################
  227. .vscode
  228. ##########################
  229. ## Fuzz test corpus
  230. ##########################
  231. fuzztest/http1/**
  232. fuzztest/http1c/**
  233. fuzztest/url/**
  234. crash-[0-9a-f]*
  235. leak-[0-9a-f]*
  236. slow-unit-[0-9a-f]*
  237. civetweb_fuzz?