Please log in or register to answer this question.

1 Answer

0 votes
by

Installation of Git Client

Linux

You can install the Git on Linux by using the software package management tool. For instance, if you are using Fedora, you can use as −

sudo yum install git

If you are using Debian-based distribution such as Ubuntu, then use the following command −

sudo apt-get install git

Windows

You can install Git on Windows by downloading it from the Git website. Just go to msysgit.github.io link and click on the download button.

Mac

Git can be installed on Mac using the following command −

brew install git

Another way of installing Git is, by downloading it from Git website. Just go to Git install on Mac link, which will install Git for Mac platform.

Related questions

...