diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-01-19 18:10:09 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-01-19 18:10:09 +0000 |
commit | 2ea6f7c1ef0a9eeef6ecc65f2bbdd8d83a321bc4 (patch) | |
tree | b55c069359f2eabbd7ac7c05a56066852b24117b /usr.bin/cvs/cvs.1 | |
parent | 5ce7cc672dc00327907349abc13ea901057b5437 (diff) |
more `cvs update' bits; help and ok jmc
Diffstat (limited to 'usr.bin/cvs/cvs.1')
-rw-r--r-- | usr.bin/cvs/cvs.1 | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/usr.bin/cvs/cvs.1 b/usr.bin/cvs/cvs.1 index e93cd14b6ff..a0f718a4148 100644 --- a/usr.bin/cvs/cvs.1 +++ b/usr.bin/cvs/cvs.1 @@ -1,4 +1,4 @@ -.\" $OpenBSD: cvs.1,v 1.28 2005/01/18 15:16:27 xsa Exp $ +.\" $OpenBSD: cvs.1,v 1.29 2005/01/19 18:10:08 xsa Exp $ .\" .\" Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> .\" All rights reserved. @@ -466,6 +466,40 @@ flag causes .Nm to prune any directories that have become empty as a result of the update. .Pp +For each file updated, a single letter prefix is given to +specify the state of the file. +The possible prefixes are as follows: +.Bl -tag -width "XXX" +.It \&? +The file is unknown to +.Nm . +.It A +The file has been added with the +.Ic add +command, but has not been committed to the repository with the +.Ic commit +command. +.It C +A merge, with a more recent version of the file, has been done, +but unresolved conflicts still remain. +.It M +The file has been locally modified; if a more recent version +is available, the merge has been done without conflict. +.It P +The same as +.Sq U , +but, in client-server mode, only differences are sent to save network +resources. +.It R +The file has been removed with the +.Ic remove +command, but has not been committed to the repository with the +.Ic commit +command. +.It U +The file is up to date. +.El +.Pp Aliases: .Ic up , .Ic upd . |