how to do local git configuration using mail id code example
Example 1: git change email
git config --global user.email "[email protected]"
Example 2: git set email and name for repo
# For setting inside project folder
git config user.name "Neeraj Singh"
git config user.email '[email protected]'