.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  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. [Dd]ebug CONSOLE/
  56. [Rr]elease/
  57. x64/
  58. [Bb]in/
  59. [Oo]bj/
  60. # MSTest test Results
  61. [Tt]est[Rr]esult*/
  62. [Bb]uild[Ll]og.*
  63. *_i.c
  64. *_p.c
  65. *.ilk
  66. *.meta
  67. *.obj
  68. *.pch
  69. *.pdb
  70. *.pgc
  71. *.pgd
  72. *.rsp
  73. *.sbr
  74. *.tlb
  75. *.tli
  76. *.tlh
  77. *.tmp
  78. *.tmp_proj
  79. *.log
  80. *.vspscc
  81. *.vssscc
  82. .builds
  83. *.pidb
  84. *.log
  85. *.scc
  86. # Visual C++ cache files
  87. ipch/
  88. *.aps
  89. *.ncb
  90. *.opensdf
  91. *.sdf
  92. *.cachefile
  93. # Visual Studio profiler
  94. *.psess
  95. *.vsp
  96. *.vspx
  97. # Guidance Automation Toolkit
  98. *.gpState
  99. # ReSharper is a .NET coding add-in
  100. _ReSharper*/
  101. *.[Rr]e[Ss]harper
  102. # TeamCity is a build add-in
  103. _TeamCity*
  104. # DotCover is a Code Coverage Tool
  105. *.dotCover
  106. # NCrunch
  107. *.ncrunch*
  108. .*crunch*.local.xml
  109. # Installshield output folder
  110. [Ee]xpress/
  111. # DocProject is a documentation generator add-in
  112. DocProject/buildhelp/
  113. DocProject/Help/*.HxT
  114. DocProject/Help/*.HxC
  115. DocProject/Help/*.hhc
  116. DocProject/Help/*.hhk
  117. DocProject/Help/*.hhp
  118. DocProject/Help/Html2
  119. DocProject/Help/html
  120. # Click-Once directory
  121. publish/
  122. # Publish Web Output
  123. *.Publish.xml
  124. *.pubxml
  125. # NuGet Packages Directory
  126. ## TODO: If you have NuGet Package Restore enabled, uncomment the next line
  127. #packages/
  128. # Windows Azure Build Output
  129. csx
  130. *.build.csdef
  131. # Windows Store app package directory
  132. AppPackages/
  133. # Others
  134. sql/
  135. *.Cache
  136. ClientBin/
  137. [Ss]tyle[Cc]op.*
  138. ~$*
  139. *~
  140. *.dbmdl
  141. *.[Pp]ublish.xml
  142. *.pfx
  143. *.publishsettings
  144. # RIA/Silverlight projects
  145. Generated_Code/
  146. # Backup & report files from converting an old project file to a newer
  147. # Visual Studio version. Backup files are not needed, because we have git ;-)
  148. _UpgradeReport_Files/
  149. Backup*/
  150. UpgradeLog*.XML
  151. UpgradeLog*.htm
  152. # SQL Server files
  153. App_Data/*.mdf
  154. App_Data/*.ldf
  155. #############
  156. ## Windows detritus
  157. #############
  158. # Windows image file caches
  159. Thumbs.db
  160. ehthumbs.db
  161. # Folder config file
  162. Desktop.ini
  163. # Recycle Bin used on file shares
  164. $RECYCLE.BIN/
  165. # Mac crap
  166. .DS_Store
  167. #############
  168. ## Python
  169. #############
  170. *.py[co]
  171. # Packages
  172. *.egg
  173. *.egg-info
  174. dist/
  175. eggs/
  176. parts/
  177. var/
  178. sdist/
  179. develop-eggs/
  180. .installed.cfg
  181. # Installer logs
  182. pip-log.txt
  183. # Unit test / coverage reports
  184. .coverage
  185. .tox
  186. #Translations
  187. *.mo
  188. #Mr Developer
  189. .mr.developer.cfg
  190. ##########################
  191. ## Files created by tests
  192. ##########################
  193. requests.db
  194. ##########################
  195. ## Files created by ctags
  196. ##########################
  197. ?tags
  198. ?tags?
  199. ##########################
  200. ## Files created by autotools
  201. ##########################
  202. *.lo
  203. .libs
  204. ##########################
  205. ## Travis Build Dir
  206. ##########################
  207. ci/lua