On Sat, Oct 30, 2010 at 9:39 PM, Andrew Palmer <[email protected]> wrote: > Last night I set up an empty google code project (http:// > quilty.googlecode.com/) and installed RabbitVCS on my Ubuntu machine > at home so that I can sync my code. I've tested RabbitVCS and it seems > to work and allow me to check out projects on Google Code anonymously, > however, when I try to check out my own (empty...) project, I just get > the error: URL 'http://quilty.googlecode.com/svn/trunk' doesn't exist
You just answered your own question: you created an *empty* repository. You must have reset it to revision 0 yourself. Take a look at it, revision 0 has nothing but a root directory, there's no top level /trunk directory, exactly like the error says. Your repository root is located at https://qulity.googlecode.com/svn ; that's all that exists at the moment. > > I also tried to checkout my project using the url 'http:// > quilty.googlecode.com/svn' and get no errors, and RabbitVCS creates an > empty folder, but if I try to add a file and sync with googlecode, I > just get an error. > > I thought that maybe this was because my repository is empty, so I > reset it just to make sure and tried using svnsync via the terminal > but was met with the following error: > :~$ export FROMREPO= <local svn resource location> > :~$ export TOREPO=https://quilty.googlecode.com/svn/ > :~$ svnsync init ${TOREPO} ${FROMREPO} > Password for '(null)' GNOME keyring: < tried to enter my password > here. > > svnsync: DAV request failed; it's possible that the repository's pre- > revprop-change hook either failed or is non-existent > svnsync: At least one property change failed; repository is unchanged > svnsync: PROPPATCH of '/svn/!svn/bln/0': authorization failed: Could > not authenticate to server: rejected Basic challenge (https:// > quilty.googlecode.com) > > Note that it still says Password for '(null)' even if I use --username > <myusername> when tring to go svnsync This looks like a bug with gnome keyring -- it's forcing you to authenticate as username 'null' for some reason. Deactivate the integration with keyring somehow. (Not sure if that's in keyring itself, or if you need to do that in your ~/.subversion/config or ~/.subversion/servers files.) -- You received this message because you are subscribed to the Google Groups "Project Hosting on Google Code" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-code-hosting?hl=en.

