SVC.1
上传用户:datang2001
上传日期:2007-02-01
资源大小:53269k
文件大小:2k
源码类别:

操作系统开发

开发平台:

C/C++

  1. SVC(1)                    Minix Programmer's Manual                     SVC(1)
  2. NAME
  3.      svc, ci, co, svclog - shell version control system
  4. SYNOPSIS
  5.      ci [-lu] file
  6.      co [-l] [-r rev] file
  7.      svclog file
  8. OPTIONS
  9.      -l   For ci, checkin, checkout again, and lock file
  10.      -l   For co, checkout file and then lock the archive
  11.      -u   After checking in, do not delete the file
  12.      -r   Check out revision rev instead most recent revision
  13. EXAMPLES
  14.      ci -u file          # Check in file
  15.      co -l file          # Check out file and lock archive
  16.      co -r 2 file        # Check out version 2
  17. DESCRIPTION
  18.      Svc is the Shell Version Control system, patterned on RCS.  It  maintains
  19.      a  sequence  of  versions  in  archive files, so that new versions can be
  20.      checked in (added to the archive), and old versions can  be  checked  out
  21.      (made available).  To create an archive for file, check it in with the -u
  22.      flag.  This action will prompt for a  log  message  and  then  create  an
  23.      archive  called  file,S  in the current directory, or in the subdirectory
  24.      SVC if it exists. The  file  will  not  be  deleted,  but  will  be  made
  25.      unwritable.
  26.      To update the file, check it out with the -l flag.  Then modify  it,  and
  27.      check it back in, giving a new message when prompted.  After this process
  28.      has been repeated  many  times,  the  archive  will  contain  the  entire
  29.      history.   Any  version  can  be checked out using the -r flag.  To get a
  30.      printout of the history, use svclog.
  31.                                                                              1