哪个 PPA 具有 12.04 的最新版本的 git?ppa:git-core/ppa 已过时

jco*_*lum 6 ppa git 12.04

刚刚安装了 git viappa:git-core/ppa1.7.9.5在当前版本为1.9.2.

$ sudo add-apt-repository ppa:git-core/ppa
You are about to add the following PPA to your system:
 The most current stable version of Git for Ubuntu.

For release candidates, go to https://launchpad.net/~git-core/+archive/candidate .
...

$ sudo apt-get install git
Reading package lists... Done
Building dependency tree       
...

$ git --version
git version 1.7.9.5
...
Run Code Online (Sandbox Code Playgroud)

作为一个额外的问题,为什么没有更多的 deb 包用于像 git 这样的广泛使用的应用程序?我知道apt-get工作正常,但我发现 PPA 系统有点随意。我不知道 debs 是否会更好;只是希望存在更好的东西。

有在不压缩包http://code.google.com/p/git-core/downloads/list1.9.2

Syl*_*eau 11

您应该更新您的软件包列表,因为 1.9.2 版可以git-coreppa 获得

sudo apt-add-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git=1:1.9.2-0ppa1~precise1
Run Code Online (Sandbox Code Playgroud)