无法在Ubuntu上更新Git

我试图在Ubuntu机器上设置Git(我使用的是运行Ubuntu 12.04的三星Chromebook)。

当我输入“sudo apt-get install git”并成功安装了Git 1.79

user@ChrUbuntu:~$ git --version
git version 1.7.9.5

我无法弄清楚我在这里做错了什么。 有什么建议么?


对于Ubuntu的新安装,我会首先尝试获取最新的更新

sudo apt-get dist-upgrade

欲了解更多信息,请参阅https://askubuntu.com/questions/81585/what-is-dist-upgrade-and-why-does-it-upgrade-more-than-upgrade

这应该解决它,但如果没有,从这些家伙添加存储库https://launchpad.net/~git-core/+archive/ppa

sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git

这样你就不必建立它了,等等。


也许你需要为最新版本构建

wget git-core.googlecode.com/files/git-1.8.1.1.tar.gz
tar -zxf git-1.8.1.1.tar.gz
cd git-1.8.1.1
make prefix=/usr/local all
sudo make prefix=/usr/local install

如果你想升级到最新版本的Git,你应该这样做:

sudo apt-get update
sudo apt-get upgrade

这会更新你的所有软件包,以及Git。
顺便说一句,我的Kubuntu 12.10的最新版本的Git是1.7.10.4

链接地址: http://www.djcxy.com/p/16457.html

上一篇: Unable to update Git on Ubuntu

下一篇: What is the current way to remove a git submodule?