Learn Git Basis
Git Configuration
Set the name that will be attached to your commits and tags.
$ git config --global user.name “Your Name”
Set the e-mail address that will be attached to your commits and tags.
$ git config --global user.email “you@example.com”
...
shobhitsheta.hashnode.dev3 min read