Sale price  €0,00 Regular price  €1.000,00

Problem Statement

Git configuration error: user name and email are unknown.

Problem Resolution

Configure globally via terminal:

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

Verify:

git config --global user.name
git config --global user.email

You may also like