问题描述
我目前安装了 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
最佳回答
要从命令行安装 latest stable…
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
。