Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

cvs_access.html 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <HTML>
  2. <TITLE>CVS Access</TITLE>
  3. <BODY text="#000000" bgcolor="#55bbff" link="#111188">
  4. <h1>CVS Access</h1>
  5. <p>
  6. Mesa's CVS repository (code management system) is hosted on
  7. <a href="http://www.freedesktop.org" target="_parent">freedesktop.org</a>.
  8. </p>
  9. <p>
  10. You may access the repository either as an
  11. <a href="#anonymous">anonymous user</a> (read-only) or as a
  12. <a href="#developer">developer</a>
  13. (read/write).
  14. </p>
  15. <p>
  16. You may also
  17. <a href="http://freedesktop.org/cgi-bin/viewcvs.cgi/mesa/Mesa/"
  18. target="_parent">browse the CVS repository</a>.
  19. </p>
  20. <a name="anonymous">
  21. <H2>Anonymous CVS Access</H2>
  22. <p>
  23. Anonymous, public, read-only access to the CVS repository is available.
  24. Here are the basic instructions for Unix systems:
  25. </p>
  26. <ol>
  27. <li>Install CVS client software on your computer if needed.
  28. Version 1.9.28 is known to work.
  29. <li>Login as an anonymous user:
  30. <pre>
  31. cvs -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa login
  32. </pre>
  33. Just press Enter/Return when prompted for a password.
  34. <br>
  35. <br>
  36. <li>Check out the code:
  37. <pre>
  38. cvs -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa co Mesa
  39. </pre>
  40. </ol>
  41. <p>To update your Mesa CVS source to the latest CVS source:</p>
  42. <ol>
  43. <li><code>cd Mesa</code>
  44. <li><code>cvs -z3 -d:pserver:anonymous@pdx.freedesktop.org:/cvs/mesa update</code>
  45. </ol>
  46. <a name="developer">
  47. <H2>Developer CVS Access</H2>
  48. <p>
  49. Mesa developers working with the Mesa CVS repository need to first
  50. have an account on <a href="http://www.freedesktop.org" target="_parent">
  51. freedesktop.org</a>.
  52. You can request an account from <a href="mailto:eta@lclark.edu">Eric Anholt</a>.
  53. </p>
  54. <p>
  55. Once your account is established, you can check out the Mesa CVS tree
  56. with:
  57. <pre>
  58. setenv CVS_RSH ssh (if using a csh-like shell)
  59. </pre>
  60. <em>OR</em>
  61. <pre>
  62. export CVS_RSH=rsh (if using a bash-like shell)
  63. </pre>
  64. followed by:
  65. <pre>
  66. cvs -d:ext:yourusername@pdx.freedesktop.org:/cvs/mesa co Mesa
  67. </pre>
  68. <p>
  69. Of course, replace <em>yourusername</em> with your actual login name.
  70. </p>
  71. <p>
  72. Subsequent updates should only require:
  73. </p>
  74. <pre>
  75. cvs update
  76. </pre>
  77. </body>
  78. </html>