Cheatsheets
Git Cheat Sheet — Essential Commands
Daily Workflow
BASH
git status
git add .
git commit -m "message"
git push origin mainBranches
BASH
git switch -c feature-x
git merge feature-x
git branch -d feature-xCheatsheets
git status
git add .
git commit -m "message"
git push origin maingit switch -c feature-x
git merge feature-x
git branch -d feature-x