.gitignore 3.2 KB

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