cvs_anon.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
  2. <HTML>
  3. <HEAD>
  4. <title>uClibc Anonymous CVS Instructions</title>
  5. </HEAD>
  6. <body text="#000000" alink="#660000" link="#660000" bgcolor="#dee2de" vlink="#660000">
  7. <basefont face="lucida, helvetica, arial" size="3">
  8. <H3>Accessing the uClibc CVS Repository</H3>
  9. <CENTER>
  10. <TABLE BORDER=0 CELLSPACING=1 CELLPADDING=2>
  11. <TR>
  12. <td bgcolor="#000000">
  13. <FONT FACE="lucida, helvetica" COLOR="#ccccc0">
  14. <B>u&nbsp;C&nbsp;l&nbsp;i&nbsp;b&nbsp;c</B>
  15. </FONT>
  16. </TD>
  17. </TR>
  18. </TABLE>
  19. </CENTER>
  20. <TABLE WIDTH="95%" CELLSPACING=1 CELLPADDING=4 BORDER=1>
  21. <TR><TD BGCOLOR="#ccccc0" ALIGN=center>
  22. <A NAME="intro"> <BIG><B>
  23. Anonymous CVS
  24. </B></BIG></A>
  25. </TD></TR>
  26. <TR><TD BGCOLOR="#eeeee0">
  27. We allow anonymous (read-only) CVS access to everyone. The first command you
  28. need to run for anonymous CVS access is:
  29. <pre>
  30. cvs -d:pserver:anonymous@uclibc.org:/var/cvs login</pre>
  31. <p>
  32. CVS will prompt you for a password. Enter the word 'anonymous' and
  33. press Enter. This step only needs to be done once, the first
  34. time you attempt to access CVS.
  35. <p>
  36. Once the login is complete, you can then check the list of available
  37. CVS modules by running the following command (all on one line):
  38. <pre>
  39. cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -c </pre>
  40. <p>
  41. If you wish, you can then check out a local copy of any of the
  42. available modules. The following is an example of how to grab
  43. a copy of the uClibc source code:
  44. <pre>
  45. cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -P uClibc</pre>
  46. This will create a directory called <b>uClibc</b> in the current
  47. directory which contains the latest and greatest source code for
  48. uClibc.
  49. <p>
  50. I usually create a ~/.cvsrc file with the following things in it, and I
  51. recommend you should use the same:
  52. <pre>
  53. -z3
  54. update -dP
  55. rdiff -u
  56. diff -ubBwpN
  57. checkout -P</pre>
  58. <p>
  59. Once you've checked out a copy of the source tree, you can update your
  60. source tree at any time so it is in sync with the latest and greatest by
  61. running the command:
  62. <pre>
  63. cvs update</pre>
  64. Because you've only been granted anonymous access to the tree, you won't be
  65. able to commit any changes. Changes can be submitted for inclusion by posting
  66. them to the appropriate <a
  67. href="http://www.uclibc.org/mailman/listinfo/uclibc">mailing list</a>.
  68. <!-- End of Table -->
  69. </TD></TR>
  70. </TABLE>
  71. <!-- Footer -->
  72. <HR>
  73. <TABLE WIDTH="100%">
  74. <TR>
  75. <TD>
  76. <font size="-1" face="arial, helvetica, sans-serif">
  77. Mail all comments, insults, suggestions and bribes to
  78. <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR>
  79. </font>
  80. </TD>
  81. <TD>
  82. <a href="http://www.vim.org"><img border=0 width=90 height=36
  83. src="images/written.in.vi.png"
  84. alt="This site created with the vi editor"></a>
  85. </TD>
  86. <TD>
  87. <a href="http://www.gimp.org/"><img border=0 width=90 height=36
  88. src="images/gfx_by_gimp.png" alt="Graphics by GIMP"></a>
  89. </TD>
  90. <TD>
  91. <a href="http://www.linuxtoday.com"><img width=90 height=36
  92. src="images/ltbutton2.png" alt="Linux Today"></a>
  93. </TD>
  94. <TD>
  95. <p><a href="http://slashdot.org"><img width=90 height=36
  96. src="images/sdsmall.png" alt="Slashdot"></a>
  97. </TD>
  98. <TD>
  99. <a href="http://freshmeat.net"><img width=90 height=36
  100. src="images/fm.mini.png" alt="Freshmeat"></a>
  101. </TD>
  102. </TR>
  103. </TABLE>
  104. </BODY>
  105. </HTML>