Differences between revisions 3 and 4
Revision 3 as of 2007-03-14 12:06:36
Size: 718
Editor: alpt
Comment:
Revision 4 as of 2007-03-14 17:40:23
Size: 716
Editor: alpt
Comment:
Deletions are marked like this. Additions are marked like this.
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

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

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