how to change git account in git bash code example
Example 1: change git account terminal
git config --list
git config --global user.name "Full Name"
git config --global user.email "[email protected]"
Example 2: how to change account in git bash
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
git config --global user.password "your password"