安装、更新最新的Git – Ubuntu环境

这篇文章记录了,在Ubuntu 14.04服务器上更新Git遇到的问题,Git源更新,安装更新源的命令:apt-add-repository。

Ubuntu 14.04服务器版本的Git实在太老了,1.9.1版本,所以打算更新一下
查看Git的版本
git version

在卸载了原装(我的服务器有装,有些最小版本的服务器不会装)后,
sudo apt-get purge git
sudo apt-get autoremove

在通过安装指令安装
sudo apt-get install git

却发现版本还是没变,这里确认了安装源太了的缘故,所以更新一下软件的源。
sudo apt-get update
再安装,版本还是没变,因此确认了源没有Git最新版本,具体为什么不清楚了。

找了些资料,找到通过下面的命令来添加源:
sudo apt-add-repository ppa:git-core/ppa

在执行这个命令后,遇到另外一个问题
sudo: apt-add-repository: command not found

所以首先需要安装apt-add-repository
Sudo apt-get install python-software-properties

安装完后,执行下面的命令就可以添加源,更新数据并安装最新的Git了
sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git

感谢下面两网站的资料:
http://askubuntu.com/questions/568591/how-do-i-install-the-latest-version-of-git-with-apt/568596
http://askubuntu.com/questions/493460/how-to-install-add-apt-repository-using-the-terminal

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.