Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

cvs checkout time series

Tags:

cvs

We have a cvs archive, and I can get any version of any file I want. However, is there any way to just get the code as of a certain date and time? I don't see any options to request that. I'd like the ability to walk through a cvs archive day by day and do metrics automatically, perhaps a visualization of what happened to the code over time.

like image 597
Dov Avatar asked Dec 21 '22 19:12

Dov


1 Answers

You can check out a specific date:

cvs co -D "2010-10-10 22:15:59 GMT" mypath/myfile

See e.g. http://www.manpagez.com/man/1/cvs/ for the detailed docs (option -D).

like image 130
sleske Avatar answered Feb 28 '23 00:02

sleske