Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am new to SVN, subversion, etc. I have a C# application in MS Visual Studion 2008 that I would like to share on Google Code.

I have been looking around for some info on how to do that without any luck. I have now installed TortoiseSVN. When I right-click and choose Export or Import I get the following error messages:

"Server sent unexpected return value (405 Method Not Allowed) in response to"
"OPTIONS request for 'http://code.google.com/p/atm/source/browse/%23svn/trunk'"

What am I doing wrong?

share|improve this question

3 Answers

up vote 1 down vote accepted

I believe these might work for you. Screenshots included.

http://devwatch.wordpress.com/2008/10/25/how-to-access-google-code-svn/

http://mzaher.wordpress.com/2009/03/02/how-to-use-svn-with-google-code/

share|improve this answer
That worked. Thank you for the links – aateeque Dec 9 '10 at 22:56
@darktangent No problem, just don't forget to accept my answer when you can. – karlphillip Dec 9 '10 at 22:57
Done. New to SO – aateeque Dec 9 '10 at 22:59
@darktangent Thanks, I hope you enjoy SO. – karlphillip Dec 9 '10 at 23:00
Loving it already! – aateeque Dec 9 '10 at 23:27

You're using the wrong url. You're using the web browse url instead of the url to the repository.

So instead of http://code.google.com/p/atm/source/browse use https://atm.googlecode.com/svn/trunk/

As shown on the Source->Checkout page: http://code.google.com/p/atm/source/checkout

share|improve this answer

HTTP 405 is a resource/method not allowed status. I believe that you will need to use https when committing to Google Code as http is reserved for read-only i.e. checkouts.

That is at least one of the reasons why your commit failed.

See this thread as well.

share|improve this answer
thanks. that was the reason and the incorrect URL path as well – aateeque Dec 11 '10 at 13:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.