cobolero
cobolero

Reputation: 452

files in SVN in a given date

Im trying to checkout the content of a SVN repository in a given date. The most i could do is to get the files commited in that given date. Is there any way to achieve this?

Thanks and regards

Upvotes: 5

Views: 3163

Answers (1)

Ivan Jovović
Ivan Jovović

Reputation: 5298

svn co -r {2015-01-03} https://path-to-your-repo

Note that this will checkout files until 1 date before date specified (2015-01-02 in this case): Is Subversion a Day Early?

Upvotes: 7

Related Questions