现在的位置: 首页 > 综合 > 正文

RabbitVCS:Linux下的TortoiseSVN,ubuntu下安装方法

2013年10月02日 ⁄ 综合 ⁄ 共 1607字 ⁄ 字号 评论关闭

官方网站:http://rabbitvcs.org/

可以进行svn,git的版本控制,和nautilus的整合比较好,和TortoiseSVN使用习惯相似,非常不错的一款软件

下面的安装方法,都是官方网站的文档,简单的翻译了一下,我个人觉得挺好用的,拿来和大家分享。

Installing from our distributed tarball is relatively straightforward on Ubuntu.

在ubuntu上使用tarball的方式安装也是相对简单的。

First, make sure you install all dependencies:

首先,就是确保你安装了所有的依赖

sudo apt-get install python-nautilus python-configobj python-gtk2 python-glade2 python-svn python-dbus subversion meld

Then download the tarball and from the top folder type:

下载tarball(官方下载地址:http://code.google.com/p/rabbitvcs/downloads/list,备用下载地址:rabbitvcs-0.14.2.1.zip),进入解压的目录

tar xvf rabbitvcs-0.14.2.1.tar.gz
unzip rabbitvcs-0.14.2.1.zip
 
cd rabbitvcs-0.14.2.1
sudo python setup.py install

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.

一旦完成安装工作,就进入clients文件夹,查看README文件,进行客户端的安装。

RabbitVCS Nautilus Extension (与nautilus的整合)

This extension is meant to be used with the Nautilus File Manager,

这个扩展是整合在natulius文件管理器中的
Requirements(依赖):
    * nautilus (>= v2.22.0)
    * nautilus-python (>= 0.5.1)
    * python-dbus (> 0.80)
    * (all other RabbitVCS requirements)

To install:

安装方式:

  To install for all users, copy RabbitVCS.py to: 为所有用户安装

        /usr/lib/nautilus/extensions-2.0/python
    
    To install for a single user, copy RabbitVCS.py to:  针对单个用户安装
        ~/.nautilus/python-extensions
    
    In both cases, you may need to create the python/python-extensions folder.
    两种方式,你都需要创建目录python或python-extensions。

单个用户安装方式,完整的参考命令如下:

cd clients/nautilus
mkdir ~/.nautius/python-extensions
cp RabbitVCS.py ~/.nautilus/python-extensions

    Restart nautilus with the following commands:

  使用下列命令重启nautilus

nautilus -q
pgrep -f service.py | xargs kill
nohup nautilus > /dev/null &

抱歉!评论已关闭.