How to checkout a specific Subversion revision from the command line?

后端 未结 10 591
日久生厌
日久生厌 2020-11-28 00:54

I want to checkout a specific revision of a folder in Subversion using the command line.

I don\'t see an option for specifying the revision number in TortoiseP

10条回答
  •  心在旅途
    2020-11-28 01:15

    Any reason for using TortoiseProc instead of just the normal svn command line?

    I'd use:

    svn checkout svn://somepath@1234 working-directory
    

    (to get revision 1234)

提交回复
热议问题