google code提供的免费的SVN服务器

来源:互联网 发布:sql统计重复数据个数 编辑:程序博客网 时间:2024/05/21 17:49


非常简单的一个SVN服务器:http://code.google.com/

 

ps:

如果本机使用了代理的话,需要在SVN的配置文件中添加代理服务器的信息,否则SVN会报一个错误:

OPTIONS of 'https://xxx.googlecode.com/svn/trunk': could not connect to server (https://xxx.googlecode.com)

 

SVN配置文件目录地址:

C:/Documents and Settings/你的用户名/Application Data/Subversion/servers

或者“

C盘->用户->“你的用户名”-> AppData(该文件夹隐藏)-> Roaming-> Subversion-> servers


找到下列内容:

[global]# http-proxy-exceptions = *.exception.com, www.internal-site.org# http-proxy-host = defaultproxy.whatever.com# http-proxy-port = 7000# http-proxy-username = defaultusername# http-proxy-password = defaultpassword

修改为

[global]# http-proxy-exceptions = *.exception.com, www.internal-site.orghttp-proxy-host = 127.0.0.1 #你的代理服务器的地址http-proxy-port = 8087 #你的代理服务器的端口号http-proxy-username = xxxx #用户名http-proxy-password = xxxx #密码

保存,再用svn checkout就可以了。。。


原创粉丝点击