How install git on CentOS? I find this manual. Is it good?

link|improve this question
Not programming question - and have you tried? It looks fine. – user28457 Feb 23 '10 at 14:51
This is the server on which the application is running right now, so I'm afraid to experiment. – Pavel Druzyak Feb 23 '10 at 15:06
feedback

migrated from stackoverflow.com Sep 3 '10 at 12:07

This question came from our site for professional and enthusiast programmers.

closed as not a real question by random Mar 15 at 20:49

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

5 Answers

yum install gettext-devel expat-devel curl-devel zlib-devel openssl-devel
cd /usr/local/src
wget http://kernel.org/pub/software/scm/git/git-1.7.5.tar.gz
tar xzvf git-1.7.5.tar.gz
cd git-1.7.5
make prefix=/usr/local all
make prefix=/usr/local install
link|improve this answer
feedback

Add the EPEL repository, then install it using yum.

link|improve this answer
feedback

yum install git-core

link|improve this answer
No Match for argument: git-core – Pavel Druzyak Feb 23 '10 at 15:07
2  
You need to add repository, here's how to do this: wiki.centos.org/AdditionalResources/Repositories/RPMForge – Qwerty Feb 23 '10 at 15:26
feedback

Note everyone: git comes in the stranded centos 6 repos but for 5 you will need EPEL or freshmeat etc or from source.

link|improve this answer
feedback

I provide RPMs for git 1.7 in the Webtatic repository, as the kernel.org RPM's are incompatible with CentOS's old rpm installer.

http://www.webtatic.com/blog/2009/09/git-on-centos-5/

link|improve this answer
feedback