I want to checkout a folder from SVN repository to my local system by command line operation of SVN.
1 Answer
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
svn helpto get a list of commands, including checkout. Then, usesvn help coto get more information about checking out. How you refer to your repo depends on how it was setup. We can't make that up.