在 LTS 上安装较新版本的 git

在 LTS 上安装较新版本的 git

我无法升级我的 lucid lynx 10.04 LTS,因为较新的 ubuntu 发行版无法在该计算机上运行。我需要安装 git 版本 1.7.10 来进行凭据管理。10.04 LTS 上的 Git 版本是 1.7.0.4:

$ dpkg -l *git*
+++-==============-==============-============================================
ii  git-core       1:1.7.0.4-1ubu fast, scalable, distributed revision control

有没有办法或反向移植来安装 git 1.7.10 或更新版本?

答案1

电力供应局ppa:git-core/ppa为各种 Ubuntu 版本提供最新稳定版本的 Git 的反向移植。

在命令行中,你可以使用以下命令添加 PPA:

sudo add-apt-repository ppa:git-core/ppa

如果收到错误提示add-apt-repository未找到,请使用以下命令进行安装:

sudo apt-get install python-software-properties

相关内容