how to sign into github from terminal
$ 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
Source: codegrepper
how to login to git from terminal
git config --global user.name "your_username"
Source: docs.gitlab.com
how to login to git from terminal
git config --global user.email "your_email_address@example.com"
Source: docs.gitlab.com
how to set up git for github
$ git config --global user.name "Your name here"
$ git config --global user.email "your_email@example.com"
Source: kbroman.org
linux login to github via git
$ git config --global user.name "Your name here"
$ git config --global user.email "your_email@example.com"
$ git config --global color.ui true
$ git config --global core.editor emacs
Source: kbroman.org
login to github from terminal
MY OWN GIT
Source: codegrepper