Cheatsheets

Git Cheat Sheet — Essential Commands

Daily Workflow

BASH
git status
git add .
git commit -m "message"
git push origin main

Branches

BASH
git switch -c feature-x
git merge feature-x
git branch -d feature-x