blog.webwesen.com Rotating Header Image

How to install git on Ubuntu Karmic

git-1.6.6 is assumed (at the time of writing)
pretty simple:

$ sudo aptitude install build-essential
$ sudo aptitude install zlib1g-dev
$ mkdir ~/Downloads/git
$ cd !$
$ wget http://kernel.org/pub/software/scm/git/git-1.6.6.tar.gz
$ tar xvfz git-1.6.6.tar.gz
$ cd git-1.6.6/
$ ./configure
$ make
$ sudo make install
$ git

upd: Ubuntu Lucid howto

Related posts:

  1. How to install git on Ubuntu Lucid
  2. TODO Items after a fresh Ubuntu install
  3. USB devices do not mount in Lucid

4 Comments

  1. mind unload says:

    Thanks for posting this!!! This saved me a ton of trouble :) .

  2. Mike turner says:

    Me too. Thanks!

  3. Dan says:

    Install the packages libcurl curl libcurl4-openssl-dev before configuring to compile with curl support. If you are trying to compile Chromium OS or otherwise using Google’s source control tool gclient you will need it.

  4. [...] git on a bright and shiny new Ubuntu. Lucid it is this time around. No surprises at all (see previously posted Karmic instructions) [...]

Leave a Reply