7

I'm trying to figure out how to download the latest source code.

Here's what I've done.

  1. On my desktop machine, I created my CodePlex app account, installed Tortoise SVN and successfully uploaded my code to the site. The source code now shows on the CodePlex site.

  2. On my laptop, I installed Tortoise SVN. I then created a blank folder and I'm now trying to download the code available on my CodePlex site.

I know my SVN url, and my user name and password.

I'm just lost as to how to do it. I try SVN Update, but it only downloads a couple of files, not the complete source code.

JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
Sergio Tapia
  • 40,006
  • 76
  • 183
  • 254

4 Answers4

9

With Tortoise simply Right-Click in your Directory and do an "SVN Checkout.." This option is directly above your "Tortoise SVN" menu.

jsmith
  • 7,198
  • 6
  • 42
  • 59
3

Instead of "SVN Update"
try "TortoiseSVN->Update to Revision..."
and select "Update Depth=Fully recursive".

Martin Schmidt
  • 1,331
  • 10
  • 5
2

When starting with no code on the laptop, run SVN Checkout the first time, this creates a working copy.

SVN Update should be run on this working copy (or subpaths). It's normal for update to fetch only a few files, as it only fetches the modifications

Sander Rijken
  • 21,376
  • 3
  • 61
  • 85
  • Hi Sander, is the folder updated automagically or do I have to manually run the update? – Sergio Tapia Jan 07 '10 at 23:32
  • 1
    You have to manually run the update. It pretty much needs to work like that, as the alternative introduces far too many potential problems with people breaking something other people were relying on - it would be far too painful to figure out what went wrong, because you wouldn't know where the error originated - you couldn't tell if it broke before or after the update. – Michael Madsen Jan 08 '10 at 13:22
0

Just create a folder you want to create the files to, then go up, right click on the folder, and choose "SVN Checkout" from the menu. Then enter your URL repository.

If you don't see that menu option TortoiseSVN must not have installed correctly.

ine
  • 14,014
  • 8
  • 55
  • 80