Git Commands: 101
git config
Setup author name and mail to be used for all commits in current repository, Devs commonly use --global flag to set config options for current user.
git config --global user.name "username"
git config --global user.email "usermail@example....
blog.grejo.in7 min read