Getting started with Git
SETUP
Set a name that is identifiable for credit when review version history
git config --global user.name “[firstnamelastname]”
Set an email address that will be associated with each history marker
git config --global user.email “[valid email]”
...
nikhilkhetan.hashnode.dev1 min read