add user in git bash code example
Example 1: git bash set global username and password
$ git config --list --show-origin
Example 2: git setup local user
git config user.name "Your Name Here"
git config user.email [email protected]
Or Global
git config --global user.name "Your Name Here"
git config --global user.email [email protected]