.gitignore 2.9 KB

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