.gitignore 2.6 KB

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