[BACK]Return to cvs.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/cvs.c between version 1.37 and 1.38

version 1.37, 2005/01/24 17:42:26 version 1.38, 2005/01/24 18:48:23
Line 110 
Line 110 
         },          },
         {          {
                 CVS_OP_ANNOTATE, "annotate", { "ann"        }, cvs_annotate,                  CVS_OP_ANNOTATE, "annotate", { "ann"        }, cvs_annotate,
                 "[-flR] [-D date | -r rev] file ...",                  "[-flR] [-D date | -r rev] ...",
                 "",                  "D:flRr:",
                 "Show last revision where each line was modified",                  "Show last revision where each line was modified",
                 NULL,                  NULL,
         },          },
         {          {
                 CVS_OP_CHECKOUT, "checkout", { "co",  "get" }, cvs_checkout,                  CVS_OP_CHECKOUT, "checkout", { "co",  "get" }, cvs_checkout,
                 "",                  "[-AcflNnPpRs] [-D date | -r rev] [-d dir] [-j rev] [-k kopt] "
                 "",                  "[-t id] module ...",
                   "AcD:d:fj:k:lNnPRr:st:",
                 "Checkout sources for editing",                  "Checkout sources for editing",
                 NULL,                  NULL,
         },          },
Line 190 
Line 191 
 #endif  #endif
         {          {
                 CVS_OP_LOG, "log",      { "lo"         }, cvs_getlog,                  CVS_OP_LOG, "log",      { "lo"         }, cvs_getlog,
                   "[-bhlNRt] [-d dates] [-r revisions] [-s states] [-w logins]",
                 "",                  "",
                 "",  
                 "Print out history information for files",                  "Print out history information for files",
                 NULL,                  NULL,
         },          },
Line 218 
Line 219 
         },          },
         {          {
                 CVS_OP_RELEASE, "release",  {}, NULL,                  CVS_OP_RELEASE, "release",  {}, NULL,
                 "",                  "[-d]",
                 "",                  "d",
                 "Indicate that a Module is no longer in use",                  "Indicate that a Module is no longer in use",
                 NULL,                  NULL,
         },          },
         {          {
                 CVS_OP_REMOVE, "remove",   { "rm", "delete" }, cvs_remove,                  CVS_OP_REMOVE, "remove",   { "rm", "delete" }, cvs_remove,
                 "[-flR] file ...",                  "[-flR] file ...",
                 "",                  "flR",
                 "Remove an entry from the repository",                  "Remove an entry from the repository",
                 NULL,                  NULL,
         },          },
Line 254 
Line 255 
         {          {
                 CVS_OP_STATUS, "status",   { "st", "stat" }, cvs_status,                  CVS_OP_STATUS, "status",   { "st", "stat" }, cvs_status,
                 "[-lRv]",                  "[-lRv]",
                 "",                  "lRv",
                 "Display status information on checked out files",                  "Display status information on checked out files",
                 NULL,                  NULL,
         },          },
         {          {
                 CVS_OP_TAG, "tag",      { "ta", "freeze" }, cvs_tag,                  CVS_OP_TAG, "tag",      { "ta", "freeze" }, cvs_tag,
                 "[-bdl] [-D date | -r rev] tagname",                  "[-bcdFflR] [-D date | -r rev] tagname",
                 "",                  "bcD:dFflRr:",
                 "Add a symbolic tag to checked out version of files",                  "Add a symbolic tag to checked out version of files",
                 NULL,                  NULL,
         },          },
Line 274 
Line 275 
         },          },
         {          {
                 CVS_OP_UPDATE, "update",   { "up", "upd" }, cvs_update,                  CVS_OP_UPDATE, "update",   { "up", "upd" }, cvs_update,
                 "",                  "[-ACdflPpR] [-D date | -r rev] [-I ign] [-j rev] [-k kopt] "
                   "[-t id] ...",
                 "",                  "",
                 "Bring work tree in sync with repository",                  "Bring work tree in sync with repository",
                 NULL,                  NULL,

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.38