check git config

C++
git config --list
# or
git config --global --listgit config --listOpen the command line.
Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
Set your email address: git config --global user.email "[email protected]"
Source

Also in C++: