.gitignore 3.0 KB

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