.gitignore 2.6 KB

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