4

I want to checkout a folder from SVN repository to my local system by command line operation of SVN.

1
  • 1
    Use svn help to get a list of commands, including checkout. Then, use svn help co to get more information about checking out. How you refer to your repo depends on how it was setup. We can't make that up. Commented May 10, 2018 at 13:26

1 Answer 1

8

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.