.gitignore 3.1 KB

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