SVN: Could not resolve hostname 'xxxxx' and malformed file

版权声明:转载时请以超链接形式标明文章原始出处和作者信息及本声明
http://elansoft.blogbus.com/logs/75609543.html

svn co http://src.chromium.org/svn/trunk/tools/depot_tools

svn: OPTIONS of 'http://xxx.com/svn/trunk/': Could not resolve hostname `src.chromium.org': No such host is known. 
我是通过代理上网,所以需要为SVN设置代理:
C:\Users\%UserName%\AppData\Roaming\Subversion
找到servers文件,用记事本打开,找到以下代码:
[global]
# http-proxy-exceptions = *.exception.com, www.internal-site.org 
# http-proxy-host = myproxy
# http-proxy-port = 1080
# http-proxy-username = defaultusername
# http-proxy-password = defaultpassword
# http-compression = no
# http-auth-types = basic;digest;negotiate
将上述红色 部分改成使用的代理,并去掉注释即可,如:
http-proxy-host = myproxy
http-proxy-port = 1080

然后就可以正常使用svn了。

再然后就可以gclient sync了!!!

猜你喜欢

转载自ywchen.iteye.com/blog/1042452
今日推荐