git config email attachment code example
Example 1: git user.name user.email
git config --global user.name "Your Name"
git config --global user.email "[email protected]"
Example 2: git config all users
$ git config --get-all user.name
or
$ git config --list