Saturday, 25 January 2020

Installing GIT on Linux Machine

The process of installing GIT on a Linux Machine is simple as like other packages, provided the Linux machine is configured with yum(CENTOS, RHEL, OL latest repositories), apt(UBUNTU) or other package manager, else local copy of the binary package. If already installed make sure the package is up to date.

CENTOS, RHEL, OL
#yum install git or dnf install git
UBUNTU
#apt install git
Verify the installation by typing the following command which will print the Git version:
#git --version
With Git successfully installed, you can now move on to the setting up GIT local repository.




No comments:

Post a Comment