SmartGit/HG

SmartGit/HG 是一款开放源代码的、跨平台的、支持 Git 和 Mercurial 的 SVN 图形客户端,可运行在Windows、Linux 和 MAC OS X 系统上。可用的最新版本 SmartGit/HG 6.0.0,最近已发布。

Ubuntu 及衍生系统用户安装,打开终端,使用以下命令:

sudo add-apt-repository ppa:eugenesan/ppa
sudo apt-get update
sudo apt-get install smartgithg

Debian 用户安装命令:

sudo apt-get install gdebi
wget syntevo.com/download/smartgithg/smartgithg-6_0_0.deb
sudo gdebi smartgithg-6_0_0.deb

卸载命令:

sudo apt-get remove smartgithg

其他系统用户下载:

下载SmartGit/HG

SmartGit 的详细介绍请点这里
SmartGit 的下载地址请点这里

专属下载链接:链接:http://pan.baidu.com/s/1pJLozov 密码:ebxw

参考链接:http://www.linuxidc.com/Linux/2014-06/102621.htm

时间: 2024-10-24 06:32:18

SmartGit/HG的相关文章

Ubuntu 及衍生版本用户如何安装 SmartGit/HG

http://www.linuxidc.com/Linux/2014-06/102621.htm Ubuntu 及衍生版本用户如何安装 SmartGit/HG 6.0.0 [日期:2014-06-03] 来源:imcn.me  作者:Linux [字体:大 中 小] SmartGit/HG 是一款开放源代码的.跨平台的.支持 Git 和 Mercurial 的 SVN 图形客户端,可运行在Windows.Linux 和 MAC OS X 系统上.可用的最新版本 SmartGit/HG 6.0.0

【转】Install SmartGit via PPA in Ubuntu 13.10/13.04/12.04/Linux Mint

原文网址:http://ubuntuhandbook.org/index.php/2013/09/install-smartgit-via-ppa-ubuntu-linux-mint/ This tutorial will show you how to install SmartGit/HG easily via PPA in Ubuntu 13.10, Ubuntu 13.04, Ubuntu 12.04, Ubuntu 12.10 and Linux Mint. As you may kn

通过SmartGit把java maven项目传到码云

一.首先先在码云上新建一个项目 二.复制项目的链接 三.打开SmartGit,点击clone 4.把复制的项目链接粘上去 5.然后点两次next,选择一个路径,finish 6.打开刚刚选择的路径,我们能看到: 7.现在我们要把我们自己的maven项目粘进去 8.做完之后,我们能够看到SmartGit上已经多出来东西了 9.接下来我们先点击Stage,然后点击commit,要填写commit message 的内容(我填的是test smartgit),最后点击commit&push 10.最后

ubuntu 安装 git & smartgit

1. 安装 git # sudo apt-get update# sudo apt-get install git ? 2. 配置 # git config --global user.name "Your Name" # git config --global user.email "[email protected]" ? 3. 查看配置 # gitconfig--list ? 4. ?安装 SmartGit # cd ~/Downloads # wget?ht

SmartGit STUDY

Git Concepts This section helps you to get started with Git and gives you an understanding of the fundamental Git concepts. Repository, Working Tree, Commit First, we need to introduce some Git-specific terms which may have different meanings in othe

SmartGit STUDY 2

The Index The Index is an intermediate cache for preparing a commit. With SmartGit, you can make heavy use of the Index, or ignore its presence completely - it's all up to you. The Stage command allows you to save a file's content from your working t

突击Mercurial SCM(HG)

这个叫水银的源码管理工具虽然默默无闻,但还是得到了很多团队的使用.为了迎合某些团队的需要,我们也要用它来管理我们的代码. 今天的任务是先突击学习,磨刀不误砍柴工.对工具的掌握越快,工作的效率就会越高. 1.安装 首先从官网下载最新的版本,我这次做个实验,下载了3.2-rc. 解压到你指定的目录下: [[email protected] mercurial]$ ls mercurial-3.2-rc.tar.gz [[email protected] mercurial]$ tar xzvf me

SmartGit 试用过期

smartgit是见过的最好用的git客户端, 要解决其试用版过期的问题,如下: 1.定位到文件夹 Windows: %APPDATA%\syntevo\SmartGit\OS X: ~/Library/Preferences/SmartGit/Unix/Linux: ~/.smartgit/ 2.删除文件夹下的 settings.xml

基于fabric和hg的自动化部署

自动化部署 fabric是个很好用的自动化部署工具,虽然功能比起puppet,saltstack之类要弱一些,但胜在用python,而且免安装服务端. 当然你要说docker更好我也同意,然而我是经常使用FreeBSD的,而且还有一些32位的低配系统,并不适合用docker.更不用说虚拟机了. 自动化部署的目的主要是简化手工部署的麻烦,包括初次安装部署和代码修改后的更新部署.初始部署主要是安装基础环境,初始化数据库等.更新部署则更麻烦一些,需要修改基础环境配置,变更数据库结构等.相比之下代码发布