I'm trying to download all the files and folder inside this URL: http://svn.jobeet.org/doctrine/tags/release_day_10/ at once, but I can't figure out how.

Any suggestions?

(I installed Subversion but no idea ho to use it).

I'm using Ubuntu 10.04 LTS

link|improve this question

30% accept rate
feedback

2 Answers

up vote 2 down vote accepted

You should "checkout" the source:

svn checkout http://svn.jobeet.org/doctrine/tags/release_day_10/

You can find more info about subversion on the internet, e.g.:

http://www.linuxfromscratch.org/blfs/edguide/chapter03.html

link|improve this answer
feedback

On the command prompt type:

svn co http://svn.jobeet.org/doctrine/tags/release_day_10/

This will checkout the source tree to a folder release_day_10 in the current directory.

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.