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?
Asked
Active
Viewed 261 times
0

Siddharth Shyniben
- 572
- 4
- 18
1 Answers
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