Как настроить GIT для GitHub
$ git config --global user.name "Your name here"
$ git config --global user.email "your_email@example.com"
Spotless Sheep
$ git config --global user.name "Your name here"
$ git config --global user.email "your_email@example.com"
$ git config credential.helper store
$ git push https://github.com/owner/repo.git
Username for 'https://github.com': <USERNAME>
Password for 'https://USERNAME@github.com': <PASSWORD>
git config --global user.name "userNameHere"
git config --global user.email "userEmailHere"