svn使用错误笔记
我在Linux上装了svn后,总是无法从服务器上checkout源码下来,总是报错:
hkbdm@ubuntu:~$ svn checkout https://rd_h_02:8443/svn/qq_2_0/
svn: OPTIONS of 'https://rd_h_02:8443/svn/qq_2_0': Could not resolve hostname `rd_h_02': No address associated with hostname (https://rd_h_02:8443)
hkbdm@ubuntu:~$ svn checkout https://192.168.0.34:8443/svn/
Error validating server certificate for 'https://192.168.0.34:8443':
- The certificate is not issued by a trusted authority. Use the
fingerprint to validate the certificate manually!
- The certificate hostname does not match.
Certificate information:
我直接是用ip地址也不行,后来发现是安装VisualSVN-Server-1.6.2.msi的时候选项选错了,应该默认有一个https的选项。
应该把这个去掉。
使用svn下载源码 方法
方法1:
svn checkout http://iqq.googlecode.com/svn/trunk/ iqq-read-only
方法2:
第一步,如图1,创建一个新文件夹作为本地工作目录(Working directory),可以使用应用名为文件夹名。如,为我的应用devcenter创建本地工作目录。
第二步,从SAE的SVN仓库检出(checkout)一个应用的全部版本代码,如图2,右键-->点击“SVN Checkout”
在弹出页面中填写仓库路径即可,这里是:https://svn.sinaapp.com/devcenter/,其它默认参数即可,如图3:
Reversion处,“HEAD revision”是指最新版,也可以指定Revision为任意一个版本。
点击“OK”,出现下载界面,如图4:
如果一切顺利,devcenter应用所有版本代码将会全部出现在刚刚创建的devcenter文件夹下,如图