.gitignore 2.7 KB

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