I am running OS X 10.7.3.
I installed Git. I then git cloned cloned NVM:
git clone git://github.com/creationix/nvm.git ~/.nvm
Since I git cloned NVM, simple commands such as “curl” and “ruby” are no longer recognized in my terminal. Did it screw up my globals – and how can I get them back to normal on OS Lion?
My .bash_profile is as follows:
export PATH=/usr/local/git/bin
Any ideas?
export PATH="$PATH:/usr/local/git/bin"or
export PATH="/usr/local/git/bin:$PATH"