Re: Check out at specified date
"Mark D. Baushke" <[email protected]>
| Newsgroups | gmane.comp.version-control.cvs.bugs |
|---|---|
| Message-ID | <[email protected]> |
John shu <[email protected]> writes: > Please any one advise me how to check out the files from the cvs at > specified date. > > I need a command to check out a files at specified date and specified time. Read http://www.cvshome.org/docs/manual/cvs_16.html#SEC118 for help on this. I typically use a variation of ISO 8601 timestamp with spaces between the time and timezone: cvs checkout -D "2003-04-27 07:49:43 -0800" modulename or cvs update -D "2003-04-27 07:49:43 -0800" modulename Or, if you are looking at the UTC time from a 'cvs log' command, you might want to use cvs checkout -D "2003-04-27 15:49:43 UTC" modulename I hope this helps. Enjoy! -- Mark