connect to git user code example
Example 1: git config
$ git config --list --show-origin
Example 2: how to set up git for github
$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"
$ git config --list --show-origin
$ git config --global user.name "Your name here"
$ git config --global user.email "[email protected]"