在windows下安装 svn
1、准备svn的安装文件
下载地址:https://sourceforge.net/projects/win32svn/
2、下载完成后,在相应的盘符中会有一个setup-subversion-1.8.16.msi的文件,目前最新的版本是1.8.16, 这里就使用这个版本。然后双击安装文件进行安装。我们指定安装在d:\program files (x86)\subversion目录里。
3、查看目录结构
把svn安装目录里的bin目录添加到path路径中,在命令行窗口中输入 svnserve --help ,查看安装正常与否。
至此,windows下的svn安装完成
在centos下安装 svn
大多数 gnu/linux 发行版系统自带了subversion ,所以它很有可能已经安装在你的系统上了。可以使用下面命令检查是否安装了。
svn --version
如果 subversion 客户端没有安装,命令将报告svn命令找不到的错误。
[coonote@centos6 ~]$ svn --version bash: svn: command not found
我们可以使用 yum install subversion 命令进行安装。
[coonote@centos6 root]$ su - 密码: [root@centos6 ~]# yum install subversion 已加载插件:fastestmirror, security 设置安装进程 loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * epel: mirrors.neusoft.edu.cn * extras: mirrors.zju.edu.cn * updates: mirrors.aliyun.com 解决依赖关系 --> 执行事务检查 ...
安装成功之后,执行 svn --version 命令。
[root@centos6 ~]# svn --version svn,版本 1.6.11 (r934486) 编译于 aug 17 2015,08:37:43
至此,centos下的svn安装完成。
在ubuntu下安装 svn
如果 subversion 客户端没有安装,命令将报告svn命令找不到的错误。
root@coonote:~# svn --version the program 'svn' is currently not installed. you can install it by typing: apt-get install subversion
我们可以使用 apt-get 命令进行安装
root@coonote:~# apt-get install subversion reading package lists... done building dependency tree reading state information... done the following packages were automatically installed and are no longer required: augeas-lenses hiera libaugeas0 libxslt1.1 ruby-augeas ruby-deep-merge ruby-json ruby-nokogiri ruby-rgen ruby-safe-yaml ruby-selinux ruby-shadow use 'apt-get autoremove' to remove them. the following extra packages will be installed: libserf-1-1 libsvn1 ...
安装成功之后,执行 svn --version 命令。
root@coonote:~# svn --version svn, version 1.8.13 (r1667537) compiled sep 8 2015, 14:59:01 on x86_64-pc-linux-gnu
至此,ubuntu下的svn安装完成。