Git Cheat Sheet
Git Cheat Sheet
01. Git Configuration
To set the name that will be attached to your commits
>> git config --global user.name “Your Name”
To set the email that will be attached to your commits
>> git config --global user.email “email@you.com”
02. Sta...
connectaman.hashnode.dev4 min read