login git in terminal github code example
Example 1: how to login to git from terminal
git config --global user.email "[email protected]"
Example 2: linux login to github via git
$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"
$ git config --global color.ui true
$ git config --global core.editor emacs