Configure email and name for git. The following code show how to configure name and email address for git.
Congiguring name:
git config --global user.name "your name"
Configuring email:
git config --global user.email "youremail@example.com"