问题
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)?
回答1:
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
回答2:
svn update -r NBR
It might also work with svn up
, depending of your version of Subversion.
回答3:
svn checkout URL[@REV]... [PATH]
Example for rev 2004
:
svn checkout file:///tmp/repos/test@2004 mine
Documentation.
来源:https://stackoverflow.com/questions/4744741/how-to-check-out-a-particular-version-of-code-from-svn