.gitignore 2.8 KB

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