aldev updates

This commit is contained in:
alavoor 2003-03-31 03:08:03 +00:00
parent 5769308c5b
commit caf8cc3b9c
2 changed files with 727 additions and 551 deletions

View File

@ -44,7 +44,7 @@ Revision Control System
<author>Al Dev (Alavoor Vasudevan)
<htmlurl url="mailto:alavoor[AT]yahoo.com"
name="alavoor[AT]yahoo.com">
<date>v22.8, 2003-03-12 <!-- YYYY-MM-DD correct date as per linuxdoc ISO 8601 -->
<date>v22.9, 28 March 2003
<abstract>
This document is a "practical guide" to very quickly setup CVS/RCS source code
control system. This document has custom shell scripts that are wrappers
@ -1202,6 +1202,35 @@ cvs co projdir
<sect1> An Example - Access Remote CVS Server <label id="remoteeg">
<p>
To access a remote cvs server, here is an example:
<code>
# Set env variable
export EDITOR=/bin/vi
export CVSROOT=:pserver:yourname@cvs.tldp.org:/cvsroot
# Login to remote cvs server
cvs -d $CVSROOT login
# Goto some local directory
cd $HOME/<somedirectory>
# You MUST create a new directory, as below...
mkdir cvsroot # Create the local cvs directory which has the same name as in CVSROOT
# Now get the files from remote CVS repository
cd cvsroot
cvs get LDP/howto # Or you can do 'cvs get . ' which will get everything
# After you make changes some file and later check-in that do
cd $HOME/<somedirectory>/cvsroot
cvs ci -m "your update comments here" LDP/howto/somefilename.java
</code>
<sect> RCS Shell Scripts <label id="rcs_scripts">
<p>

File diff suppressed because it is too large Load Diff