diff options
author | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-14 18:02:05 +0000 |
---|---|---|
committer | Jean-Francois Brousseau <jfb@cvs.openbsd.org> | 2005-01-14 18:02:05 +0000 |
commit | 909f6e4c00ca5685ea736412dc2629a3004d8e18 (patch) | |
tree | 528d816bc148b10c0437fd555b353928b228d45c /usr.bin/cvs/cvs.c | |
parent | 64b5ec0b92f7de35a1b7dff271a54cd6bc8d6608 (diff) |
support the -D option to the tag command and sync usage for the tag
command
from Joris Vink, with modifications by me
Diffstat (limited to 'usr.bin/cvs/cvs.c')
-rw-r--r-- | usr.bin/cvs/cvs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/cvs.c b/usr.bin/cvs/cvs.c index 853cfb6a340..2b17f56d9ca 100644 --- a/usr.bin/cvs/cvs.c +++ b/usr.bin/cvs/cvs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cvs.c,v 1.34 2005/01/13 23:39:42 jfb Exp $ */ +/* $OpenBSD: cvs.c,v 1.35 2005/01/14 18:02:04 jfb Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -260,7 +260,7 @@ static struct cvs_cmd { }, { CVS_OP_TAG, "tag", { "ta", "freeze" }, cvs_tag, - "", + "[-bdl] [-D date | -r rev] tagname", "", "Add a symbolic tag to checked out version of files", NULL, |