'svn commit' is prompting you for a password, right? If you're not passing --username to it, then it's picking up your 'whoami' username instead by default. Try adding --username to the commit prompt (and if you're comfortable, allow svn to cache the username/password combo.)
What's going on here is that our old svn server used to password-challenge the client on *any* https access. Our new svn server only challenges on *writes*. Thus adding --username to a checkout command is utterly ignored; the client only pays attention to it when challenged by the server. On Sun, Jan 30, 2011 at 6:42 PM, David Rosenbaum <[email protected]> wrote: > Hello, > > I own the project cl-lex and cannot commit changes from git or svn > (this used to work fine). > > When I checkout the code using > > git svn clone --username [email protected] -s https://cl-lex.googlecode.com/svn > > I am not prompted for my googlecode password and when I try to commit > with > > git svn dcommit > > I get the error > > Committing to https://cl-lex.googlecode.com/svn/trunk ... > URL access forbidden for unknown reason: access to '/svn/!svn/act/ > d6e3eb47-e501-46d0-9a79-8c26e050c848' forbidden at /usr/lib/git-core/ > git-svn line 4439 > > I also tried to checkout the code using the command > > svn checkout https://cl-lex.googlecode.com/svn/trunk/ cl-lex -- > username [email protected] > > As with git, I was not prompted for my googlecode password. Attempts > to commit with > > svn commit > > failed with the error > > svn: Commit failed (details follow): > svn: access to '/svn/!svn/act/3196e34a-2044-4303-a800-9306705a25c2' > forbidden > > Any suggestions would be appreciated. > > Thanks > > -- > 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. > > -- 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.

