.gitignore 3.2 KB

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