google code提供的免費的SVN服務器


非常簡單的一個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.org
http-proxy-host = 127.0.0.1 #你的代理服務器的地址
http-proxy-port = 8087 #你的代理服務器的端口號
http-proxy-username = xxxx #用戶名
http-proxy-password = xxxx #密碼

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


發佈了19 篇原創文章 · 獲贊 0 · 訪問量 15萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章