Как войти в GitHub от терминала

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com

or to see the signed in user

git config --list
guruwalker