Differences between revisions 1 and 5 (spanning 4 versions)
Revision 1 as of 2007-03-14 12:04:52
Size: 695
Editor: alpt
Comment:
Revision 5 as of 2007-03-26 15:48:25
Size: 1084
Editor: alpt
Comment: anon cvs
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
== Using the Hinzumilabs CVS == == Using the Hinezumilabs CVS ==
Line 14: Line 14:
scp ~/.ssh/id_rsa.pub USERNAME@cvs.hinezumi.org:~/.ssh/authorized_keys scp ~/.ssh/id_rsa.pub USERNAME@cvs.hinezumi.org:.ssh/authorized_keys
Line 21: Line 21:
loop:    loop:
Line 23: Line 23:
        modifica file         vi some_file # edit your files
Line 29: Line 29:
== Anonymous CVS ==

{{{
$ cvs -d :pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot login
or
$ export CVSROOT=":pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot"
$ cvs login

then check it out:

$ cvs -z3 -d :pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot co netsukuku
or
$ cvs -z3 co netsukuku
(providing the CVSROOT variable was set in the previous step)
}}}
Line 31: Line 47:
* Hinezumi viewcvs: http://cvs.hinezumi.org/viewcvs/
* CIA stats for netsukuku: http://cia.navi.cx/stats/project/netsukuku/
 * Hinezumi viewcvs: http://cvs.hinezumi.org/viewcvs/
 * CIA stats for netsukuku: http://cia.navi.cx/stats/project/netsukuku/

Using the Hinezumilabs CVS

In this example we'll use the netsukuku module.

Just do the following:

cat <<EOF>> ~/.ssh/config
Host cvs.hinezumi.org
Hostname cvs.hinezumi.org
Port 2222
EOF

scp ~/.ssh/id_rsa.pub USERNAME@cvs.hinezumi.org:.ssh/authorized_keys

export CVSROOT=":ext:USERNAME@cvs.hinezumi.org:/home/cvsroot"

cvs co netsukuku

cd netsukuku/
loop:
        cvs update      # to update files, which have been modified by others
        vi some_file    # edit your files
        cvs commit
        
        goto loop

Anonymous CVS

$ cvs -d :pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot login
or
$ export CVSROOT=":pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot"
$ cvs login

then check it out:

$ cvs -z3 -d :pserver:anoncvs@cvs.hinezumi.org:/home/cvsroot co netsukuku
or
$ cvs -z3 co netsukuku
(providing the CVSROOT variable was set in the previous step)

Hinezumicvs (last edited 2008-06-26 10:00:12 by anonymous)