Commit and push your tutorials to the GitHub repository for backup and mobile reading.
# Sync Coding Tutor Tutorials Commit and push your tutorials to the GitHub repository for backup and mobile reading. ## Instructions 1. **Go to the tutorials repo**: `cd ~/coding-tutor-tutorials` 2. **Check for changes**: Run `git status` to see what's new or modified 3. **If there are changes**: - Stage all changes: `git add -A` - Create a commit with a message summarizing what was added/updated (e.g., "Add tutorial on React hooks" or "Update quiz scores") - Push to origin: `git push` 4. **If no GitHub remote exists**: - Create the repo: `gh repo create coding-tutor-tutor...