.gitignore 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  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. 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. *.Cache
  132. ClientBin/
  133. [Ss]tyle[Cc]op.*
  134. ~$*
  135. *~
  136. *.dbmdl
  137. *.[Pp]ublish.xml
  138. *.pfx
  139. *.publishsettings
  140. # RIA/Silverlight projects
  141. Generated_Code/
  142. # Backup & report files from converting an old project file to a newer
  143. # Visual Studio version. Backup files are not needed, because we have git ;-)
  144. _UpgradeReport_Files/
  145. Backup*/
  146. UpgradeLog*.XML
  147. UpgradeLog*.htm
  148. # SQL Server files
  149. App_Data/*.mdf
  150. App_Data/*.ldf
  151. #############
  152. ## Windows detritus
  153. #############
  154. # Windows image file caches
  155. Thumbs.db
  156. ehthumbs.db
  157. # Folder config file
  158. Desktop.ini
  159. # Recycle Bin used on file shares
  160. $RECYCLE.BIN/
  161. # Mac crap
  162. .DS_Store
  163. #############
  164. ## Python
  165. #############
  166. *.py[co]
  167. # Packages
  168. *.egg
  169. *.egg-info
  170. dist/
  171. build/
  172. eggs/
  173. parts/
  174. var/
  175. sdist/
  176. develop-eggs/
  177. .installed.cfg
  178. # Installer logs
  179. pip-log.txt
  180. # Unit test / coverage reports
  181. .coverage
  182. .tox
  183. #Translations
  184. *.mo
  185. #Mr Developer
  186. .mr.developer.cfg