git config

C++
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]$ git config --global core.editor vimgit config --global user.name "John Doe"
git config --global user.email [email protected] config --list$ git config --list --show-originOpen 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++: