how to set git username and password in git bash 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 username
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Example 3: git bash set global username and password
$ git config --list --show-origin
Example 4: 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]