Home > Net >  Install Git on Mac
Install Git on Mac

Time:12-21

I can't download Git on my computer (Mac).

I'm using the

brew install git

command but it only shows a warning.

Any thoughts? Git warning

CodePudding user response:

Try doing brew update and also search for formulae or casks using brew search git

CodePudding user response:

You can install git-osx-installer. Then use the following command to check the installation:

git --version 

Read this article for more information.

  • Related