Configure email and name for git

Author: Al-mamun Sarkar Date: 2020-04-12 14:00:56

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"