.gitignore 2.7 KB

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