Reputation: 1334
After installing Sierra and starting WebStorm for my project, I'm getting an error that it can't find the git executable. I'm given the opportunity to 'fix it', and navigate to the file in usr/bin/git
, but it won't run. In my terminal I ran which git
and it returns usr/bin/git
.
How can I get it started?
Upvotes: 0
Views: 591
Reputation: 868
Same problem in Mac OS Sierra version 10.12 solved after running xcode installation with following code from terminal:
xcode-select --install
Upvotes: 1
Reputation: 1334
I ended up reinstalling git 2.10.0. The executable switched location to /usr/local/git/bin/git
Upvotes: 0