OS X版本:10.10.3
localhost:~ mikan$ which svn /usr/local/bin/svn删除旧版本的svn:
localhost:~ mikan$ cd /usr/local/bin/ localhost:bin mikan$ rm -rf svn*通过brew install subversion
localhost:bin mikan$ brew update subversion查看svn版本:
localhost:bin mikan$ svn --version查看svn服务器上的某个目录:
localhost:bin mikan$ svn list https://ip:port/xxx/trunk/此时却出现了:
svn: E170000: Unrecognized URL scheme for https://ip:port/xxx/trunk/
localhost:bin mikan$ brew install scons
tar -xvf serf-1.3.8.tar.bz2 cd serf-1.3.8 scons PREFIX=/usr/local/serf scons install其中scons PREFIX=/usr/local/serf中的/usr/local/serf是serf的安装目录,安装完成后,接下来安装svn
tar -xvf subversion-1.8.13.tar.bz2 cd subversion-1.8.13 ./configure --with-serf make install好了,安装成功,来验证一下:
localhost:subversion-1.8.13 mikan$ svn --version svn, version 1.8.13 (r1667537) compiled Jun 1 2015, 21:01:09 on x86_64-apple-darwin14.3.0 Copyright (C) 2014 The Apache Software Foundation. This software consists of contributions made by many people; see the NOTICE file for more information. Subversion is open source software, see http://subversion.apache.org/ The following repository access (RA) modules are available: * ra_svn : Module for accessing a repository using the svn network protocol. - with Cyrus SASL authentication - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme * ra_serf : Module for accessing a repository via WebDAV protocol using serf. - using serf 1.3.8 - handles 'http' scheme - handles 'https' scheme
svn list https://ip:port/xxx/trunk/ Error validating server certificate for 'https://182.92.233.191:443': - 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: - Hostname: iZ258hknam2Z - Valid: from May 14 14:00:46 2015 GMT until May 11 14:00:46 2025 GMT - Issuer: - Fingerprint: 5D:5A:8E:D7:AA:95:7D:29:6A:E7:67:2E:B1:22:E6:1A:4E:B2:F4:CE (R)eject, accept (t)emporarily or accept (p)ermanently?
这里输入p永久接受,然后即可显示该svn目录下的文件及文件夹了。
至此,便可正常使用svn了。
解决mac使用svn: E170000: Unrecognized URL scheme for https://xxx错误
原文:http://blog.csdn.net/mhmyqn/article/details/46317107