Settings things up
Installing git
Windows
Babun users, you should already have git
installed
OS X
Try typing git --version
at the command line to see if it’s installed. If not, try
brew install git
Setting up git
You’ll need to give git
your name and email address.
First, set up your name. This helps git label all of your commits. Replace YOUR NAME below with your actual name.
git config --global user.name "YOUR NAME"
Next, set up your email. This lets GitHub know who you are. Be sure to use the same email address as the one you used to sign up for GitHub.
git config --global user.email "YOUR EMAIL ADDRESS"