Basic commands to create a new branch and work on it:
// Creates a new branch: `git checked -b feat/media-card`
// Adds changes: `git add .`
// Commits changes: `git commit -m ""`
// Sends changes to the remote repository: `git push origin feat/media-card`
NOTIFY THE GROUP
// Returns to main: `git checkout main`
// Pulls updates from main: `git pull origin main`
// Deletes the local branch: `git branch -D feat/media-card`