Ubuntu 使用 PPA 源安装最新版 Git

服务器环境是 Aliyun Ubuntu_14.04_64bit,系统默认的镜像地址是阿里云的镜像地址,从阿里云镜像安装的 Git 是 1.9.0 版本,并不是 Git 官网最新版本;

Git 官网针对 Ubuntu 系统有说明:For Ubuntu, this PPA provides the latest stable upstream Git version,所以我们选择从 PPA 源安装 Git 最新稳定版本:

首先更新软件列表:

sudo apt-get update

然后执行以下语句:

add-apt-repository ppa:git-core/ppa

如果没有安装过 add-apt-repository 脚本会报 add-apt-repository: command not found 错误,执行下面语句就可以使用 add-apt-repository 命令了:

sudo apt-get install software-properties-common python-software-properties

再次执行 add-apt-repository ppa:git-core/ppa 命令

最后执行 sudo apt-get install git 命令等待安装完成;

发表评论
* 昵称
* Email
* 网址
* 评论