How can I install git on CENTOS 5.5 machine? I tried to install it from yum but got following msg.

root@host [~]# sudo yum install git
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * addons: centos.mirrors.tds.net
 * base: mirror.ubiquityservers.com
 * extras: mirrors.serveraxis.net
 * updates: pubmirrors.reflected.net
addons                                                   |  951 B     00:00
base                                                     | 2.1 kB     00:00
extras                                                   | 2.1 kB     00:00
updates                                                  | 1.9 kB     00:00
Excluding Packages in global exclude list
Finished
Setting up Install Process
No package git available.
Nothing to do
root@host [~]#
link|improve this question

feedback

6 Answers

up vote 12 down vote accepted

From source? From the repos? The easiest way is to use the repos: sudo yum install git should do it.

If you want to install from source, you can try these instructions. If you have yum-utils installed it's actually easier than that, too**:

sudo yum build-dep git
wget wget http://kernel.org/pub/software/scm/git/<latest-git>.tar.gz
tar -xvjf <latest-git>.tar.gz
cd <git>
make (possibly a ./configure before this)
sudo make install

**Substitute the portions enclosed in <> with the paths you need. Exact procedure may vary slightly as I have not compiled git from source, personally (there may be a configure script, for example). If you have no idea what I'm talking about, then you may want to just install from the repo as per my first suggestion.

link|improve this answer
2  
I tried to install it from yum but it says "No package git available" – Prakash Sep 23 '10 at 18:51
6  
@Prakash: It looks like git is not in the standard CentOS repositories. You can either install from source or set up the EPEL repo on your machine: fedoraproject.org/wiki/EPEL. Also, you may want to consider asking this question on Superuser/Serverfault if you need more help. – eldarerathis Sep 23 '10 at 19:06
1  
Check this out: lunix.com.au/blog/install-gitosis-on-centos5 – Rimian Sep 20 '11 at 10:00
@Rimian: I know that link manages to install git and gitweb too, but its focus is on gitosis, which is unmaintained and completely superseded by gitolite. – Jefromi Feb 2 at 18:08
feedback

If you are using CentOS the built in yum repositories don't seem to have git included and as such, you will need to add an additional repository to the system. For my servers I found that the Webtatic repository seems to be reasonably up to date and the installation for git will then be as follows:

# Add the repository
rpm -Uvh http://repo.webtatic.com/yum/centos/5/latest.rpm

# Install the latest version of git
yum install --enablerepo=webtatic git-all
link|improve this answer
1  
Worked for me. Thanks. – Ted Jan 25 at 20:21
1  
confirmed, this also worked for me (CentOS 5) – DeLongey Feb 1 at 20:36
@coure2011 - Seems like I can get to it through my browser, what sort of error exactly are you getting? – Rob Z Feb 2 at 18:06
I typed wrong command, its working now thanks. +1 – coure2011 Feb 2 at 18:13
1  
This is really good but the dl.fedoraproject.org version may be a better option for some (for me, I had an odd conflict with a perl SVN integration tool with this package so had to use the Fedora version instead). – Iain Collins Mar 30 at 8:07
show 1 more comment
feedback

I've tried few methods from this question and they all failed on my CentOs, either because of the wrong repos or missing files.

Here is the method which works for me (when installing version 1.7.8):

    yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel
    wget http://git-core.googlecode.com/files/git-1.7.8.tar.gz
    tar -xzvf ./git-1.7.8.tar.gz
    cd ./git-1.7.8
    ./configure
    make
    make install 

You may want to download a different version from here: http://code.google.com/p/git-core/downloads/list

link|improve this answer
isn't there a reliable way of configuring something from source as a package? – Henrik Dec 22 '11 at 18:23
Do you mean to create a new package? I guess you can always do so, yes: stackoverflow.com/questions/880227/… – Radek Dec 22 '11 at 19:05
1  
I had the same trouble and had to use this approach too. For searchability, here are some of the errors I ran into when trying to install via webtatic or EPEL package approach: "Missing Dependency: perl(Error) is needed by package git-1.7.7.3-1.w5.x86_64 (webtatic)", "Missing Dependency: perl-Git = 1.7.7.3-1.w5 is needed by package git-1.7.7.3-1.w5.x86_64 (webtatic)". No errors when installing using the method specified in this answer. – jlpp Apr 15 at 0:50
feedback

Just:

sudo rpm -Uvh http://download.fedora.redhat.com/pub/epel/5/i386/epel-release-5-4.noarch.rpm
sudo yum install git-core
link|improve this answer
Note that that "download.fedora.redhat.com" is now "dl.fedoraproject.org" but this still works. – Iain Collins Mar 30 at 8:04
feedback

OK, there is more to it than that, you need zlib. zlib is part of CentOS, but you need the development form to get zlib.h ... notice that the yum name of zlib development is quite different possibly than for apt-get on ubuntu/debian, what follows actually works with my CentOS version
in particular, you do ./configure on git, then try make, and the first build fails with missing zlib.h

I used a two-step procedure to resolve this a) Got RPMFORGE for my version of CentOS

See: www.centos.org/modules/newbb/viewtopic.php?topic_id=18506&forum=38 and this: wiki.centos.org/AdditionalResources/Repositories/RPMForge

In my case [as root, or with sudo]

$ wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
$ rpm -K rpmforge-release-0.5.2-2.el5.rf.*.rpm
$ rpm -i rpmforge-release-0.5.2-2.el5.rf.*.rpm
## Note: the RPM for rpmforge is small (like 12.3K) but don't let that fool
## you; it augments yum the next time you use yum
## [this is the name that YUM found] (still root or sudo)
$ yum install zlib-devel.x86_64
## and finally in the source directory for git (still root or sudo):
$ ./configure (this worked before, but I ran it again to be sure)
$ make
$ make install

(this install put it by default in /usr/local/bin/git ... not my favorite choice, but OK for the default)... and git works fine!

link|improve this answer
You can format your answer using Markdown rather than using HTML directly. It's easier to edit for others. – Noufal Ibrahim May 14 '11 at 13:34
git is in rpmforge, so all you have to do is add rpmforge to your list of repositories and install: dag.wieers.com/rpm/FAQ.php#B => add rpmforge => yum install git-all (that's it) – michael_n Oct 26 '11 at 7:27
^ This seems like by far the best soluion – Caterham Dec 13 '11 at 22:20
feedback

This worked for me on CentOS:

  1. Install dependencies:
yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel
    2.
cd /usr/local/src
wget http://code.google.com/p/git-core/downloads/detail?name=git-1.7.8.3.tar.gz
tar xvzf git-1.7.8.3.tar.gz
cd git-1.7.8.3
     ./configure
        make
        make install
      
link|improve this answer
How is it different from existing answers? – Radek Feb 8 at 0:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.