Hello Hans, * On Thu, Mar 22, 2007 at 05:26:37AM -0700 Hans Schwaebli wrote:
> Why doesn't this work? > > cvs update -D '22 Mar 2007 9:30:00 +0000' -C -d -P -S -f -R -r HEAD > script-resources > > It says: > > cvs [update aborted]: Can't parse date/time: '22 The date format is rather picky (cf. http://ximbiot.com/cvs/manual/cvs-1.11.22/cvs_16.html#SEC117). In this case, you have to use the hour with two digits, thus: cvs update -D '22 Mar 2007 09:30:00 +0000' -C -d -P -S -f -R -r HEAD script-resources (Note the "0" before the "9" in the hour) HTH, Spiro. -- Spiro R. Trikaliotis http://opencbm.sf.net/ http://www.trikaliotis.net/ http://www.viceteam.org/ _______________________________________________ info-cvs mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/info-cvs
