.gitignore 2.7 KB

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