CodyBugstein
CodyBugstein

Reputation: 23362

Where did SVN checkout to?

I just checked out the source code for HTTPCore from Apache, using

svn checkout https://svn.apache.org/repos/asf/httpcomponents/httpcore/tags/4.3.2 httpcomponents-core

But I can't figure out where it downloaded it to.

How can I find the location of these files?

Upvotes: 1

Views: 39

Answers (1)

John Wickerson
John Wickerson

Reputation: 1232

The checkout command will have created a directory called httpcomponents-core in the directory you were in when you invoked the command. The files will be in that directory if the checkout was successful.

Upvotes: 1

Related Questions