svn 安装_Tortoise SVN 安装
Tortoise SVN是 Subversion 版本控制系統的一個免費開源客戶端,可以超越時間的管理文件和目錄。
在Windows下安裝SVN
首先下載SVN的客戶端,下載地址為:https://tortoisesvn.net/downloads.html
客戶端下載:在相應的盤符中會有一個TortoiseSVN-1.14.0.msi的文件,目前最新的版本是1.14.0,這里就使用這個版本。然后雙擊安裝文件進行安裝。我們指定安裝在D:\Program Files (x86)\Subversion目錄里。
?
語言包下載:
??
???
然后一路next即可。
安裝完畢后,在桌面右鍵彈出如下菜單,表示安裝完成。
雙擊語言安裝包后,右鍵進入setting設置。
至此,Windows下的SVN安裝完成。
在CentOS下安裝SVN
大多數 GNU/Linux 發行版系統自帶了Subversion ,所以它很有可能已經安裝在你的系統上了。可以使用下面命令檢查是否安裝了。
svn --version如果 Subversion 客戶端沒有安裝,命令將報告svn命令找不到的錯誤。
[mylk@centos6 ~]$ svn --versionbash: svn: command not found我們可以使用 yum install subversion 命令進行安裝。
[mylk@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 --versionsvn,版本 1.6.11 (r934486) 編譯于 Aug 17 2015,08:37:43至此,centos下的SVN安裝完成。
在Ubuntu下安裝SVN
如果 Subversion 客戶端沒有安裝,命令將報告svn命令找不到的錯誤。
root@mylk:~# svn --versionThe program 'svn' is currently not installed. You can install it by typing:apt-get install subversion我們可以使用 apt-get 命令進行安裝。
root@mylk:~# apt-get install subversionReading package lists... DoneBuilding dependency tree Reading state information... DoneThe 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-shadowUse 'apt-get autoremove' to remove them.The following extra packages will be installed: libserf-1-1 libsvn1...安裝成功之后,執行 svn --version 命令。
root@mylk:~# svn --versionsvn, version 1.8.13 (r1667537) compiled Sep 8 2015, 14:59:01 on x86_64-pc-linux-gnu至此,Ubuntu下的SVN安裝完成。
END
排版:極簡學習60秒
總結
以上是生活随笔為你收集整理的svn 安装_Tortoise SVN 安装的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: python读取word文件并替换部分文
- 下一篇: 如何把配置文件集成到.exe中_VSCo