git config user.email for that repo code example
Example 1: git set email and name for repo
# For setting inside project folder
git config user.name "Neeraj Singh"
git config user.email 'nnneerajjj@gmail.com'
Example 2: configure git username and email
git config --global user.name "Your Name"git config --global user.email "youremail@yourdomain.com"