aldev updates

This commit is contained in:
alavoor 2002-05-27 23:05:25 +00:00
parent 21f6763a60
commit 6f7b1d1469
1 changed files with 10 additions and 2 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.3, 2002-03-08 <!-- correct date as per linuxdoc ISO 8601 -->
<date>v22.4, 2002-05-27 <!-- correct date as per linuxdoc ISO 8601 -->
<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
@ -246,7 +246,11 @@ local profile file ~/.bash_profile.
<CODE>
export EDITOR=/bin/vi
export CVSROOT=/home/cvsroot
export CVSREAD=yes
# WARNING!! WARNING: If you set CVSREAD to yes, checkout and update will try hard to
# make the files in your working directory read-only. When this is not set,
# the default behavior is to permit modification of your working files.
#export CVSREAD=yes
</CODE>
And of course, individual users can <it>override</it> the environment variables
set in /etc/profile by resetting them in their local profile file ~/.bash_profile
@ -293,6 +297,10 @@ bash# exit .... (logout of root superuser mode)
bash$ su - billclinton
bash$ export EDITOR=/bin/vi
bash$ export CVSROOT=/home/cvsroot
# WARNING! WARNING: If you set CVSREAD to yes, checkout and update will try hard to
# make the files in your working directory read-only. When this is not set,
# the default behavior is to permit modification of your working files.
bash$ export CVSREAD=yes
# Change directory is a must