Configure the Git author
You should configure your email and user name so git can include this information with every commit.
Use the following commands to configure these two settings:
git config user.name “Your name”
and
git config user.email “Your email”
.