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. | 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@ | 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@ | 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:// | rsync -avz --progress --stats rsync://cvs.linux-ax25.org/cvs/linux /local/directory | ||
rsync -avz --progress --stats rsync:// | 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 | 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>