Difference between revisions of "CVS"

From LinuxHam
Jump to navigationJump to search
 
(Remove more old junk.)
Line 1: Line 1:
== Anonymous CVS ==
== Anonymous CVS ==


For those who always want to stay on the bleeding edge, and want to avoid having to download patch files or full tarballs, we also have an anonymous CVS server.  Using CVS, you can checkout the Linux/MIPS source tree with the following commands where you insert linux, libc, gdb or faq for <module>.
For those who always want to stay on the bleeding edge, and want to avoid having to download patch files or full tarballs, we also have an anonymous CVS server.  There are currently three amateur radio relevant modules in CVS archive, ''libax25'', ''ax25-apps'' and ''ax25-tools''.
 
There are currently three amateur radio relevant modules in CVS archive, ''libax25'', ''ax25-apps'' and ''ax25-tools''.


<pre>
<pre>
cvs -d :pserver:cvs@ftp.linux-ax25.org:/home/cvs login
cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/cvs login
(Only needed the first time you use anonymous CVS, the password is "cvs")
(Only needed the first time you use anonymous CVS, the password is "cvs")
cvs -d :pserver:cvs@ftp.linux-ax25.org:/home/cvs co <module>
cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/cvs co <module>
</pre>
</pre>


Line 19: Line 17:
The CVS repository can also be fetched using rsync:
The CVS repository can also be fetched using rsync:
<pre>
<pre>
rsync -avz --progress --stats rsync://ftp.linux-ax25.org/cvs/linux /local/directory
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/linux /local/directory
rsync -avz --progress --stats rsync://ftp.linux-ax25.org/cvs/CVSROOT /local/directory
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory
</pre>
</pre>


You can then check it out using:
You can then check it out using:
<pre>
<pre>
cvs -d/local/directory co linux  (optionally, throw in -r linux_X_Y_Z for a specific branch)
cvs -d/local/directory co <module>
</pre>
</pre>


[[de:CVS]]
[[de:CVS]]

Revision as of 12:20, 25 April 2006

Anonymous CVS

For those who always want to stay on the bleeding edge, and want to avoid having to download patch files or full tarballs, we also have an anonymous CVS server. There are currently three amateur radio relevant modules in CVS archive, libax25, ax25-apps and ax25-tools.

cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/cvs login
(Only needed the first time you use anonymous CVS, the password is "cvs")
cvs -d :pserver:cvs@cvs.linux-ax25.org:/home/cvs co <module>

Web CVS

Via cvsweb, you have direct access to the new AX.25 sources, and a few other projects hosted in the same CVS archive. The intuitive interface allows you to follow the development at the click of your mouse.

CVS over Rsync

The CVS repository can also be fetched using rsync:

rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/linux /local/directory
rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/CVSROOT /local/directory

You can then check it out using:

cvs -d/local/directory co <module>