SVC.1
资源名称:os_source.zip [点击查看]
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:
操作系统开发
开发平台:
C/C++
- .TH SVC 1
- .SH NAME
- svc, ci, co, svclog - shell version control system
- .SH SYNOPSIS
- fBcifR [fB-lufR]fR fIfilefR
- .br
- fBcofR [fB-lfR]fR [fB-r fIrevfR] fIfilefR
- .br
- fBsvclog fIfilefR
- .br
- .de FL
- .TP
- \fB\$1\fR
- \$2
- ..
- .de EX
- .TP 20
- \fB\$1\fR
- # \$2
- ..
- .SH OPTIONS
- .FL "-l" "For fIcifR, checkin, checkout again, and lock file"
- .FL "-l" "For fIcofR, checkout file and then lock the archive"
- .FL "-u" "After checking in, do not delete the file"
- .FL "-r" "Check out revision fIrevfR instead most recent revision
- .SH EXAMPLES
- .EX "ci -u file" "Check in fIfilefR"
- .EX "co -l file" "Check out fIfilefR and lock archive"
- .EX "co -r 2 file" "Check out version 2"
- .SH DESCRIPTION
- .PP
- fISvcfR is the Shell Version Control system, patterned on RCS.
- It maintains a sequence of versions in archive files, so that new versions
- can be checked in (added to the archive), and old versions can be checked
- out (made available).
- To create an archive for fIfilefR, check it in with the fB-ufR flag.
- This action will prompt for a log message and then create an archive called
- fIfile,SfR in the current directory, or in the subdirectory fISVCfR if
- it exists.
- The file will not be deleted, but will be made unwritable.
- .PP
- To update the file, check it out with the fB-lfR flag.
- Then modify it, and check it back in, giving a new message when prompted.
- After this process has been repeated many times, the archive will contain
- the entire history.
- Any version can be checked out using the fB-rfR flag.
- To get a printout of the history, use fIsvclogfR.