导读
在Windows下用惯了tortoisesvn,一下子转到Ubuntu下,急需寻找一个类似的SVN工具。
Google了一下,试用了一下,esvn和rapidsvn,不尽如人意,esvn界面太简陋,连基本的修改svn地址都不方便,还不支持https协议,晕。Rapidsvn,界面还算华丽,也支持https,可惜就是不支持中文,郁闷。
还好,最后找到了rabbitvcs,一看介绍,能和Nautilus无缝集成。不错,竟然和tortoisesvn如出一辙,呵呵,赶紧试试。
装上,使用,呵呵,果然不错,操作和tortoisesvn基本一致,速度也不错。中文支持的也好。OK,以后就用你了!
Rabbit,tortoise,龟兔赛跑。兔兔加油!
原文:http://xuming.net/2010/04/rabbitvcs.html
Installation on Ubuntu
You can install from our PPA,our tarball archive,or directly from our Subversion repository. Users new to Ubuntu should use the PPA option.
Adding the PPA
Karmic and later
sudo add-apt-repository ppa:rabbitvcs/ppa
Hardy,Intrepid and Jaunty
Add the following line to your /etc/apt/sources.list file (signing key=1024R/34EF4A35):
deb http://ppa.launchpad.net/rabbitvcs/ppa/ubuntu **DISTRIBUTION** main
Installing RabbitVCS
You can use Synaptic to install packages or the command line. If you are using Synaptic,just search for the packages listed below. On the command line,you need to update your software package repositories with:
sudo apt-get update
And install it with:
sudo apt-get install «packages»
…where packages are
-
rabbitvcs-nautilus3
for the Nautilus 3.x extension (use this for Ubuntu 11.10,Oneiric Ocelot) -
rabbitvcs-nautilus
for the Nautilus 2.x extension -
rabbitvcs-thunar
for the Thunar extensions -
rabbitvcs-gedit
for the GEdit extension -
rabbitvcs-cli
for the command line launchers
If you are using the Xubuntu distro,then you probably only have Thunar installed (without Nautilus). Besidesrabbitvcs-thunar
andrabbitvcs-cli
,you also need to install an extra package.
-
thunar-vcs-plugin
hopefully,this will included as a dependency forrabbitvcs-thunar
in the future.
After installation is complete,logout and log back in for changes to take effect.
From the Tarball
Installing from our distributed tarball is relatively straightforward on Ubuntu. First,make sure you install all dependencies:
sudo apt-get install python-nautilus python-configobj python-gtk2 python-glade2 python-svn python-dbus python-dulwich subversion meld
Then download the tarball and from the top folder type:
sudo python setup.py install --install-layout=deb
Once that is done working,look in the clients folder and read the README file for each client/plugin to learn how they are installed.
Note: In order to get the menu to show up in the Nautilus right click menu,you may need to restart Nautilus which may require you to log out and log back in of your desktop environment (see theFAQ).
后记
先添加源
sudoadd-apt-repositoryppa:rabbitvcs/ppa
必要的话在源清单里面也添加一下
sudogedit/etc/apt/sources.list
内容是
debhttp://ppa.launchpad.net/rabbitvcs/ppa/ubuntu/raringmain
更新源
sudoapt-getupdate
更新完成以后安装小兔子(注意这是我>=12.04的ubuntu nautilus用的是3版本如果是老的ubuntu就是nautilus不是nautilus3)
不过老版本的Ubuntu没有测试过
sudoapt-getinstallrabbitvcs-nautilus3rabbitvcs-clirabbitvcs-gedit
完成后重启nautilus
nautilus-q
nautilus
好了鼠标右键文件夹就可以了
而且在命令行下也支持svn命令了
原文链接:https://www.f2er.com/ubuntu/355446.html