.gitignore 2.9 KB

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