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

Diff for /src/usr.bin/cvs/checkout.c between version 1.62 and 1.63

version 1.62, 2006/06/14 20:28:53 version 1.63, 2006/06/16 14:07:42
Line 20 
Line 20 
 #include "cvs.h"  #include "cvs.h"
 #include "log.h"  #include "log.h"
 #include "diff.h"  #include "diff.h"
 #include "proto.h"  
   
 int     cvs_checkout(int, char **);  int     cvs_checkout(int, char **);
 int     cvs_export(int, char **);  int     cvs_export(int, char **);
Line 31 
Line 30 
 extern int build_dirs;  extern int build_dirs;
   
 struct cvs_cmd cvs_cmd_checkout = {  struct cvs_cmd cvs_cmd_checkout = {
         CVS_OP_CHECKOUT, CVS_REQ_CO, "checkout",          CVS_OP_CHECKOUT, 0, "checkout",
         { "co", "get" },          { "co", "get" },
         "Checkout a working copy of a repository",          "Checkout a working copy of a repository",
         "[-AcflNnPpRs] [-D date | -r tag] [-d dir] [-j rev] [-k mode] "          "[-AcflNnPpRs] [-D date | -r tag] [-d dir] [-j rev] [-k mode] "
Line 42 
Line 41 
 };  };
   
 struct cvs_cmd cvs_cmd_export = {  struct cvs_cmd cvs_cmd_export = {
         CVS_OP_EXPORT, CVS_REQ_EXPORT, "export",          CVS_OP_EXPORT, 0, "export",
         { "exp", "ex" },          { "exp", "ex" },
         "Export sources from CVS, similar to checkout",          "Export sources from CVS, similar to checkout",
         "[-flNnR] [-d dir] [-k mode] -D date | -r rev module ...",          "[-flNnR] [-d dir] [-k mode] -D date | -r rev module ...",

Legend:
Removed from v.1.62  
changed lines
  Added in v.1.63