Author Topic: SVN Update Error  (Read 3931 times)

Offline rhf

  • Multiple posting newcomer
  • *
  • Posts: 123
SVN Update Error
« on: June 16, 2008, 12:25:36 am »
Hi,
For the last couple of days, I have been unable to do a SVN update. I get the error message,
 "Error: Can't connect to host 'svn.berlios.de': No connection could be made because the target machine actively refused it. "
Is svn.berlioz.de working correctly?  I have not seen any messages about this on the forums, but maybe I am looking in the wrong place.
Thanks.

   

Offline Jenna

  • Administrator
  • Lives here!
  • *****
  • Posts: 7255
Re: SVN Update Error
« Reply #1 on: June 16, 2008, 04:06:21 am »
Same issue here.

The http-url (see here) of svn-repo works, but I cannot update via http if the protocol used to create the local mirroor was svn.

It does not happen the first time.
But there haven't been any commits since 5095 and I'll be away the next week (working without internet) and if I'm back, I'm sure everything works fine.

Offline Der Meister

  • Regular
  • ***
  • Posts: 307
Re: SVN Update Error
« Reply #2 on: June 16, 2008, 09:11:01 am »
You can switch your working copy from svn to http to get it working again without loosing any local modification. Just enter this command in the trunk folder of your working copy:
Code
svn switch --relocate svn://svn.berlios.de/codeblocks/trunk http://svn.berlios.de/svnroot/repos/codeblocks/trunk
Real Programmers don't comment their code. If it was hard to write, it should be hard to understand.
Real Programmers don't write in BASIC. Actually, no programmers write in BASIC, after the age of 12.

Offline rhf

  • Multiple posting newcomer
  • *
  • Posts: 123
Re: SVN Update Error
« Reply #3 on: June 16, 2008, 02:26:46 pm »
You can switch your working copy from svn to http to get it working again without loosing any local modification. Just enter this command in the trunk folder of your working copy:
Code
svn switch --relocate svn://svn.berlios.de/codeblocks/trunk http://svn.berlios.de/svnroot/repos/codeblocks/trunk
Thanks.