在 Ubuntu 10.04(Lucid Lynx)上升级 git

在 Ubuntu 10.04(Lucid Lynx)上升级 git

我目前安装了 Git 1.7.1.0,但需要升级到 1.7.1.1(至少)。我尝试运行:

sudo apt-get update
sudo apt-get upgrade

并尝试过

sudo apt-get install git-core

但每次我都会收到一条消息,提示没有可用的 git 更新版本。我在/etc/apt/sources.list

deb http://ubunturepo.de.bonial.lan lucid main restricted multiverse universe
deb http://ubunturepo.de.bonial.lan lucid-security main restricted multiverse universe
deb http://ubunturepo.de.bonial.lan lucid-updates main restricted multiverse universe
deb http://archive.canonical.com/ lucid partner
deb http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu lucid main
deb-src http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu lucid main
deb http://archive.ubuntu.com/ubuntu lucid multiverse universe

答案1

要安装最新稳定版从命令行...

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

这应该可以让您安装1.8.2-1~ppa0~lucid2

答案2

请使用此快捷方式打开终端

Ctrl+Alt+T

然后在终端上输入这些命令

sudo apt-get 更新

sudo apt-get 安装 git

相关内容