17/05/2014 - GIT, LINUX
Steps below will show you how to install and configure git on Ubuntu.
inanzzz@inanzzz:~$ sudo apt-get update
inanzzz@inanzzz:~$ sudo apt-get install git
inanzzz@inanzzz:~$ git config --global user.name "Your Name"
inanzzz@inanzzz:~$ git config --global user.email "your_email@domain.com"
inanzzz@inanzzz:~$ git config --list
user.name=Your Name
user.email=your_email@domain.com
inanzzz@inanzzz:~$ git config --global user.email "New Name"
inanzzz@inanzzz:~$ git config --global user.email "new_email@domain.com"
or
inanzzz@inanzzz:~$ nano ~/.gitconfig
See if your GitHub connection still works.
inanzzz@inanzzz:~$ ssh -T git@github.com
inanzzz@inanzzz:~$ ssh -T git@github.com
Hi Your Name! You've successfully authenticated, but GitHub does not provide shell access.