zoukankan      html  css  js  c++  java
  • RabbitVCS:Linux下的TortoiseSVN,ubuntu下安装方法

    官方网站: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 &
    
  • 相关阅读:
    HDU2363 最短路+贪心
    stl-----map去重,排序,计数
    STL------sort三种比较算子定义
    栈------表达式求值
    踩水坑系列一
    第一周 动态规划Dynamic Programming(一)
    模拟递归回溯贪心专题入门
    HDU1013,1163 ,2035九余数定理 快速幂取模
    HDU1005 找规律 or 循环点 or 矩阵快速幂
    入门基础常识
  • 原文地址:https://www.cnblogs.com/icejoywoo/p/2056174.html
Copyright © 2011-2022 走看看