xxxxxxxxxx
git config --global user.name "Your Name"
git config --global user.email "your@email.com"
xxxxxxxxxx
# Inside terminal
git config --global user.name "Your Name"
git config --global user.email "Your email"
xxxxxxxxxx
git config --global user.name "FIRST_NAME LAST_NAME"
git config --global user.email "YourEmail@example.com"
xxxxxxxxxx
# Set the user's name
git config --global user.name "Your Name"
# Set the user's email
git config --global user.email "your.email@example.com"