Possible Duplicate:
Checkout a specific revision from Subversion from the command line
How can I check out a particular version of code from SVN (Subversion)?
Possible Duplicate:
Checkout a specific revision from Subversion from the command line
How can I check out a particular version of code from SVN (Subversion)?
What client are you using?
svn checkout svn://repository/path@123
or
svn checkout -r 123 url://repository/path
or
TortoiseProc.exe /command:checkout /rev:1234
svn update -r NBR
It might also work with svn up
, depending of your version of Subversion.
svn checkout URL[@REV]... [PATH]
Example for rev 2004
:
svn checkout file:///tmp/repos/test@2004 mine