.gitignore 2.7 KB

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