Git cheat sheet with some common Git commands:
Configuration
git config --global user.name "Your Name" - Set your name for Git commits
git config --global user.email "youremail@example.com" - Set your email for Git commits
Basic Commands
git init - Initialize a new Git repository
git clone ...
devopsgeeks.hashnode.dev2 min read