0

I am trying to download the project source from https://code.google.com/p/sfdc-gae-sso-delegated-auth/source/checkout but tortoise SVN tells me file not found. what could be the problem and how to solve it.

bahrep
  • 29,961
  • 12
  • 103
  • 150
Shebin Mathew
  • 320
  • 1
  • 7
  • 18

1 Answers1

0

The URL https://code.google.com/p/sfdc-gae-sso-delegated-auth/source/checkout points to Google Code's web interface. You can't use this particular URL with Subversion client.

The URL that Subversion client accepts is http://sfdc-gae-sso-delegated-auth.googlecode.com/svn/trunk/, so the command you should run is svn checkout http://sfdc-gae-sso-delegated-auth.googlecode.com/svn/trunk/. The same as stated on the checkout help page here: https://code.google.com/p/sfdc-gae-sso-delegated-auth/source/checkout.

bahrep
  • 29,961
  • 12
  • 103
  • 150