Как изменить свое имя пользователя и пароль GitHub в терминале

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