Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SVN checkout fails/client freezes under Windows7 64-bits

I want to check out a SVN repository but it times out. My environment is Windows 7, 64-bits. I tried: 1) TortoiseSVN, a shell-integrated plugin, 2) RapidSVN, a GUI 3) Cygwin by using the commandline

svn checkout http://ticpp.googlecode.com/svn/trunk/

(I have tried other repositories so it is not that one in particular) Note that the repository is browsable by simply typing the address in Mozilla Firefox.

Whatever I try it fails: app freezes and has to be killed. I cannot even browse the repository or view revision versions.

I have tried turning my firewall off but it did not help.

What could be the cause / what else should I try?

like image 971
Hugues Fontenelle Avatar asked Oct 12 '22 03:10

Hugues Fontenelle


1 Answers

Most likely you're behind a firewall/proxy that either blocks DAV requests explicitly or just drops them because it doesn't understand them.

Either configure your firewall/proxy properly, or try checking out with the https:// url instead of the http:// one. Most firewalls/proxies can then not interfere anymore.

like image 54
Stefan Avatar answered Dec 18 '22 22:12

Stefan