git login
git config --global user.name "Max Mustermann"
git config --global user.email "Max.mustermann@example.com"
Distinct Dingo
git config --global user.name "Max Mustermann"
git config --global user.email "Max.mustermann@example.com"
git config --global user.name "your_username"
git config --global user.email "your_email_address@example.com"
NAME=userName
EMAIL=email
git config --global user.name $NAME &&\
git config --global user.email $EMAIL &&\
git config credential.username $NAME &&\
git config credential.email $EMAIL
git config --global --list
git config --global user.email "your_email_address@example.com"