Reputation: 75
I want to checkout a folder from SVN repository to my local system by command line operation of SVN.
Upvotes: 3
Views: 46741
Reputation: 2304
Here is an example of SVN documentation in which you can find a list of svn command line commands. I'd highly recommend you start a lot of your research there to help you out. It's not really about us, here on StackOverflow, it's more of a waste of your time as this is something that is relatively easy to look up.
Nevertheless, the command you're looking for is svn checkout
or svn co
The syntax is really straight forward:
svn co url/to/repository/trunk my/local/path
And this will checkout the folder trunk
on your local machine at: my/local/path
Upvotes: 7