Как изменить учетную запись в Git Bash

git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git config --global user.password "your password"
Shy Stoat