actualizar git en Ubuntu 10.04 (Lucid Lynx)

18

Actualmente tengo instalado Git 1.7.1.0 pero necesito actualizar a 1.7.1.1 (al menos). Traté de correr:

sudo apt-get update
sudo apt-get upgrade

y también probé

sudo apt-get install git-core

pero cada vez recibo un mensaje que indica que no hay una versión posterior de git disponible. Tengo las siguientes fuentes de software configuradas en/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
Dónal
fuente
¿Qué necesito ejecutar en la línea de comandos para agregar esto?
Dónal
lo hizo una respuesta. Si esto no funciona, edítelo en su pregunta y lo eliminaré.
Rinzwind

Respuestas:

34

Para instalar la última versión estable desde la línea de comandos ...

sudo apt-get install python-software-properties
sudo add-apt-repository ppa:git-core/ppa
sudo apt-get update
sudo apt-get install git

Esto debería permitirle instalar 1.8.2-1~ppa0~lucid2.

Rinzwind
fuente
1
¿Es esencial instalar python-software-properties?
Muhammad Gelbana
@MuhammadGelbana: Sí, si aún no lo ha hechoadd-apt-repository
Pausado hasta nuevo aviso.
0

Abre la terminal usando este acceso directo

Ctrl + Alt + T

Luego escriba estos comandos en la terminal

sudo apt-get update

sudo apt-get install git

Ashish Saini
fuente