Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

cvs_access.html 2.3KB

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