.gitignore 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240
  1. #################
  2. ## Eclipse
  3. #################
  4. *.pydevproject
  5. .project
  6. .metadata
  7. bin/
  8. bin64/
  9. dll/
  10. tmp/
  11. *.tmp
  12. *.bak
  13. *.bat
  14. *.swp
  15. *.o
  16. *.idb
  17. res
  18. version.c
  19. 3proxy.res
  20. src/3proxy
  21. src/proxy
  22. src/socks
  23. src/tcppm
  24. src/udppm
  25. src/pop3p
  26. src/smtpp
  27. *.ld.so
  28. *.dSYM
  29. doc/html/man3/
  30. doc/html/man8/
  31. doc/html/index.html
  32. *.var
  33. verfile.sh
  34. Makefile
  35. Changelog
  36. copytgz.sh
  37. *~.nib
  38. local.properties
  39. .classpath
  40. .settings/
  41. .loadpath
  42. # External tool builders
  43. .externalToolBuilders/
  44. # Locally stored "Eclipse launch configurations"
  45. *.launch
  46. # CDT-specific
  47. .cproject
  48. # PDT-specific
  49. .buildpath
  50. #################
  51. ## Visual Studio
  52. #################
  53. ## Ignore Visual Studio temporary files, build results, and
  54. ## files generated by popular Visual Studio add-ons.
  55. # User-specific files
  56. *.suo
  57. *.user
  58. *.sln.docstates
  59. # Build results
  60. [Dd]ebug/
  61. [Rr]elease/
  62. x64/
  63. build/
  64. [Bb]in/
  65. [Oo]bj/
  66. # MSTest test Results
  67. [Tt]est[Rr]esult*/
  68. [Bb]uild[Ll]og.*
  69. *_i.c
  70. *_p.c
  71. *.ilk
  72. *.meta
  73. *.obj
  74. *.pch
  75. *.pdb
  76. *.pgc
  77. *.pgd
  78. *.rsp
  79. *.sbr
  80. *.tlb
  81. *.tli
  82. *.tlh
  83. *.tmp
  84. *.tmp_proj
  85. *.log
  86. *.vspscc
  87. *.vssscc
  88. .builds
  89. *.pidb
  90. *.log
  91. *.scc
  92. # Visual C++ cache files
  93. ipch/
  94. *.aps
  95. *.ncb
  96. *.opensdf
  97. *.sdf
  98. *.cachefile
  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. *.Cache
  141. ClientBin/
  142. [Ss]tyle[Cc]op.*
  143. ~$*
  144. *~
  145. *.dbmdl
  146. *.[Pp]ublish.xml
  147. *.pfx
  148. *.publishsettings
  149. # RIA/Silverlight projects
  150. Generated_Code/
  151. # Backup & report files from converting an old project file to a newer
  152. # Visual Studio version. Backup files are not needed, because we have git ;-)
  153. _UpgradeReport_Files/
  154. Backup*/
  155. UpgradeLog*.XML
  156. UpgradeLog*.htm
  157. # SQL Server files
  158. App_Data/*.mdf
  159. App_Data/*.ldf
  160. #############
  161. ## Windows detritus
  162. #############
  163. # Windows image file caches
  164. Thumbs.db
  165. ehthumbs.db
  166. # Folder config file
  167. Desktop.ini
  168. # Recycle Bin used on file shares
  169. $RECYCLE.BIN/
  170. # Mac crap
  171. .DS_Store
  172. #############
  173. ## Python
  174. #############
  175. *.py[co]
  176. # Packages
  177. *.egg
  178. *.egg-info
  179. dist/
  180. build/
  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