set git username and email global code example
Example 1: set email git
git config --global user.email "[email protected]"
Example 2: git change email
git config --global user.email "[email protected]"
Example 3: change global user name git
$ git config --global user.name "Mona Lisa"
Example 4: change git username and email
$ git config --global user.email "[email protected]"