Velvet Star Monitor

Standout celebrity highlights with iconic style.

updates

Very slow svn checkouts unless I use --no-auth-cache

Writer Andrew Henderson

Using an up-to-date Ubuntu precise 64-bit, checking out a large code base

svn co 

takes hours. Using cygwin or tortoise it takes 5 minutes. After poking around, I found this post which didn't work, but led me to try;

svn co --no-auth-cache 

and the checkout took only the 5 minutes.

So, I have a workaround, but am left wondering if there is something inherently wrong with the Ubuntu installation?

1 Answer

Through you don't say what was the repositories, of course it could take hours to clone the complete repository (hold your horses before cloning the linux kernel!) so, the time that it takes to clone the repository is perfectly normal and it has other factors like the bandwidth, the load of the SVN server, IPv6, etc. You don't provide more information that could nail the problem.

On the other hand, the --no-auth-cache switch just force your SVN to ask you for credentials in case you are accessing a protected repository. If there is any problem then is with the authentications methods stored in your configurations.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy