Comment se connecter à GitHub à partir du terminal

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

or to see the signed in user

git config --list
guruwalker