How to install GIT on Centos

GIT is really easy to install, all you need to do is download and install the dependencies and then download the package from the GIT website and deploy it. I will show you in a easy step by step guide.

  1. yum install gettext-devel expat-devel curl-devel zlib-devel openssl-devel
  2. wget http://kernel.org/pub/software/scm/git/git-1.7.0.tar.gz
  3. tar xzf git-1.7.0.tar.gz
  4. cd git-1.7.0
  5. make && make install

That’s it, you have just installed GIT, happy coding!

Share

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.