I just reinstalled mountain lion and seem to have lost git in the process. I tried following this post : Why is Git not found after installing OS X Lion? but although I can cd into /usr/local/git I get /usr/bin:/bin:/usr/sbin:/sbin:/usr/local/binwhen I echo $PATH
How can I change the path so I can go back to using git? Sorry if this is an obvious question, I'm fairly new to git/terminal commands.
Update:
I tried as suggested in another post and it seems to be working again:
sudo -s
mkdir -p /usr/local/bin
ln -s /usr/local/git/bin/git /usr/local/bin/git
exit