Question

I have git version 1.7.4.1. and would like to upgrade to the latest stable release of 1.8.4.

So I tried sudo apt-get install git as it says on the git downloads page for Linux but I get this result:

  Reading package lists... Done
  Building dependency tree       
  Reading state information... Done
  git is already the newest version.
  0 upgraded, 0 newly installed, 0 to remove and 91 not upgraded.

$ git --version 
  git version 1.7.4.1

and I'm stuck with git version 1.7.4.1!

I am on Ubuntu 11.04.

Was it helpful?

Solution

This is due to Ubuntu has not updated the package yet in their repositories. The only way around this would be to compile from source, which you can download from https://github.com/git/git.

OTHER TIPS

There are Ubuntu PPAs for Git, offering the latest version of it. Add one of those and you'll be able to install it. For example:

https://launchpad.net/~git-core/+archive/ppa

Read the "Adding this PPA to your system" information on how to do this.

You should upgrade your whole system to raring at least:

http://packages.ubuntu.com/search?keywords=git-core

(If you adhere to packaged version.)

But the source will be more fresh anyway.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top