|
|
Parent Directory
| -----------------------------------------
------------- HOWTO SCCS ---------------
-----------------------------------------
*** WHERE THE FINAL PROCEDURES STORED ***
--------------------------------------------
- why do you care, because getting from and putting into
SCCS uses the current directory. So, be in the right place.
Procedures are stored in:
/data/sccs/prod/
Other procedures are stored in:
/data/sccs/other/
*** WHAT SCCS REQUIRES TO WORK ***
--------------------------------------------
SCCS prepends a "s." to the name of the file.
To look at versions and changes, run the `prs` command, as in:
cd /data/sccs/work/project/
prs s.main.c | more
You can also look at differences between versions.
sccsdiff -r1.7 -r1.8 s.main.c
To get the most recent revision, run the `get` command, as in:
get /data/sccs/work/project/s.main.c
To recover an older revision, run the `get` command, as in:
get -r1.6 /data/sccs/work/project/s.main.c
Note: this will make the file readable only.
To recover an older version for EDITING, add the "-e" option, as in:
get -e -r1.6 /data/sccs/work/project/s.main.c
To check back in a file after editing, run the `unget` command, as in:
unget /data/sccs/work/project/s.main.c
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
In an effort to provide a service of value to the open source community, I've put together this website that containing many of my notes and references.
This website is not authoritative and it is certainly not without errors; it is a work in progress.
In addition to my contributions you will also find the work of others. Where the work is not mine, I have tried to indicate that, and to reference the source of the work: by citing the original author, retaining the authors' name and license wherever present, or by placing the work in a suitably named URL containg /external/ in the path. If you find any work here that should not be publically available, please send me a note and it will be removed.
As for my contributions, you are free to use any of *MY* notes or code from this website unless specifically instructed otherwise.
Brett Lee, Ph.D., President & CEO
Everything Penguin, Inc.
|
|
|