.gitignore 2.8 KB

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