I have just gotten svn and checked out my first project from the internet. Normally when I'm working with SVN, I have created the project locally. I downloaded the trunk with svn co

https://somethingcool.svn.sourceforge.net/svnroot/somethingcool

Where have all of the files downloaded to? It must be the default..

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

They're normally downloaded into a directory named after the last segment of the URL, so with your example URL it would be somethingcool. The directory is located where you ran the checkout command.

You can also specify a different directory, e.g.:

svn co https://svn.example.org/something path/to/any/directory
link|improve this answer
feedback

If you don't specify a destination path, SVN will checkout in a directory named after the last part of the URL. Assuming you where in C:\Users\Chris when you checkout out, the output would have been C:\Users\Chris\somethingcool.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.