how to configure git log with username and email code example
Example 1: get git username and email
git config user.name
git config user.email
Example 2: how to set up git user
$ git config --global user.name "Mona Lisa"
git config user.name
git config user.email
$ git config --global user.name "Mona Lisa"