How to configure name, email, etc in Git!
<...> means variable ---> Fill it with appropriate value and [...] means optional
To configure name for a repo: git config user.name "my name"
To configure name globally: git config --global user.name "my name"
To configure email for a repo: git config user.mail "myname@domain.com"