My Cheat Sheet for git, the commands that I use the most
Config user
List config:
git config --list
Change author:
git config --global user.name <name>
Change email:
git config --global user.email <email>
You can use:
Local -: Values in this file apply to a single repository.
Global -: Configurat...
teadeveloper.hashnode.dev3 min read