Git is an open source package for managing version control. The installation of Git on a server must required some dependencies. First we need to install all dependencies for installing Git smoothly.
Installing dependencies:
[root@server ]# yum -y install zlib-devel openssl-devel cpio expat-devel gettext-devel
Git installation:
Change the directory to ‘/usr/local/src’ and download the tar file and install it. Do the following steps for doing the same.
[root@server ]# wget http://www.codemonkey.org.uk/projects/git-snapshots/git/git-latest.tar.gz
[root@server ]# tar xvzf git-latest.tar.gz
[root@server ]# cd git-date
[root@server ]# autoconf
[root@server ]# ./configure –with-curl=/usr/local
[root@server ]# make
[root@server ]# make install
Thanks…
One thought on “How to install Git on a cpanel server (CentOS)”