is the username in git config important code example
Example 1: get git username and email
git config user.name
git config user.email
Example 2: git config all users
$ git config --get-all user.name
or
$ git config --list
git config user.name
git config user.email
$ git config --get-all user.name
or
$ git config --list