set emil id in git bash code example
Example 1: git config username
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Example 2: 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'