0

I was updating git using homebrew, and I got git installed at usr/local/Cellar/git. What should I do next? Use some homebrew command? Maybe symlink /usr/local/bin/git? Maybe just alias it as git?

1 Answers1

1

You should use brew link. It will create a symlink if not already present.

brew link git

Or like you can always create a symlink with:

ln -s /usr/local/Cellar/git /usr/local/bin/git
deepakchethan
  • 5,240
  • 1
  • 23
  • 33