cvs_anon.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. Just press Enter. This step only
  33. needs to be done once, the first time you attempt to access CVS.
  34. <p>
  35. Once the login is complete, you can then check the list of available
  36. CVS modules by running the following command (all on one line):
  37. <pre>
  38. cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -c </pre>
  39. <p>
  40. If you wish, you can then check out a local copy of any of the
  41. available modules. The following is an example of how to grab
  42. a copy of the uClibc source code:
  43. <pre>
  44. cvs -z3 -d:pserver:anonymous@uclibc.org:/var/cvs co -P uClibc</pre>
  45. This will create a directory called <b>uClibc</b> in the current
  46. directory which contains the latest and greatest source code for
  47. uClibc.
  48. <p>
  49. I usually create a ~/.cvsrc file with the following things in it, and I
  50. recommend you should use the same:
  51. <pre>
  52. -z3
  53. update -dP
  54. rdiff -u
  55. diff -ubBwpN
  56. checkout -P</pre>
  57. <p>
  58. Once you've checked out a copy of the source tree, you can update your
  59. source tree at any time so it is in sync with the latest and greatest by
  60. running the command:
  61. <pre>
  62. cvs update</pre>
  63. Because you've only been granted anonymous access to the tree, you won't be
  64. able to commit any changes. Changes can be submitted for inclusion by posting
  65. them to the appropriate <a
  66. href="http://www.uclibc.org/mailman/listinfo/uclibc">mailing list</a>.
  67. <!-- End of Table -->
  68. </TD></TR>
  69. </TABLE>
  70. <!-- Footer -->
  71. <HR>
  72. <TABLE WIDTH="100%">
  73. <TR>
  74. <TD>
  75. <font size="-1" face="arial, helvetica, sans-serif">
  76. Mail all comments, insults, suggestions and bribes to
  77. <a href="mailto:andersen@codepoet.org">Erik Andersen</a><BR>
  78. </font>
  79. </TD>
  80. <TD>
  81. <a href="http://www.vim.org"><img border=0 width=90 height=36
  82. src="images/written.in.vi.png"
  83. alt="This site created with the vi editor"></a>
  84. </TD>
  85. <TD>
  86. <a href="http://www.gimp.org/"><img border=0 width=90 height=36
  87. src="images/gfx_by_gimp.png" alt="Graphics by GIMP"></a>
  88. </TD>
  89. <TD>
  90. <a href="http://www.linuxtoday.com"><img width=90 height=36
  91. src="images/ltbutton2.png" alt="Linux Today"></a>
  92. </TD>
  93. <TD>
  94. <p><a href="http://slashdot.org"><img width=90 height=36
  95. src="images/sdsmall.png" alt="Slashdot"></a>
  96. </TD>
  97. <TD>
  98. <a href="http://freshmeat.net"><img width=90 height=36
  99. src="images/fm.mini.png" alt="Freshmeat"></a>
  100. </TD>
  101. </TR>
  102. </TABLE>
  103. </BODY>
  104. </HTML>