web-dev-qa-db-ja.com

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
18
Dónal

コマンドラインから 最新の安定版 をインストールするには...

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をインストールできます。

34
Rinzwind

このショートカットを使用して端末を開いてください

ctrl + alt + T

次に、端末でこれらのコマンドを入力します

須藤apt-getアップデート

Sudo apt-get install git

0
Ashish Saini