.gitignore 2.8 KB

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