小编典典

无法在Ubuntu上更新Git

linux

我正在尝试在Ubuntu计算机上设置Git(我使用的是运行Ubuntu 12.04的Samsung Chromebook)。

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

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

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


阅读 450

收藏
2020-06-07

共1个答案

小编典典

对于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

这样,您不必构建它,等等。

2020-06-07