Version Control
What is it?
Poor man's CMVC. Emacs can use RCS, SCCS and CVS: three version
control systems that exist for UNIX systems. RCS is free and readily
available for both UNIX and NT/95, so we'll refer to it.
Getting Your File Stoked for RCS
Follow these steps to set yourself up for version control:
- type "
mkdir RCS" in the directory where your
files exists
- edit the file and place RCS codes in it (I recommend
$Id$ in the commented header section - it has most of the
information you need)
- when you think you are ready for version 1.1 of your code,
run "
vc-register" to register the file in RCS
(this is under the "tools/version control" menu or can be
done w/ "C-x v i")
- to check out the file w/ a lock, do "
C-x
C-q"
- make changes
- check it back in w/ "
C-x v v"
- repeat steps 4 through 6 as needed.
Beginning |
Previous |
Next
Last updated $Date: 1997/04/11 03:46:17 $.