Level Navigation: 0 | 1 | 2 | Current Level: 3 |
Practice the entire process from memory using a cheat sheet.
Now try to repeat the entire process without instructions. You can use your notes if necessary.
What happened? You’ve learned the complete workflow! Now it’s time to practice it from memory to make sure you really understand each step and can do it independently.
How to verify: Create a new project with a different name (like practice-website
) and follow the checklist below. If you can complete the entire process without getting stuck, you’ve mastered the workflow!
Cheat Sheet Checklist:
mkdir project-name && cd project-name
git init
touch index.html style.css
git remote add origin https://github.com/YOUR-USERNAME/REPO-NAME.git
git branch -M main
git add .
git commit -m "Initial commit"
git push -u origin main
code .
index.html
git add .
git commit -m "Add HTML content"
git push
You now know how to:
You have mastered the complete Git/GitHub/VSCode workflow!
Level Navigation: 0 | 1 | 2 | Current Level: 3 |