.gitignore 2.9 KB

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