| 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-namegit inittouch index.html style.cssgit remote add origin https://github.com/YOUR-USERNAME/REPO-NAME.gitgit branch -M maingit add .git commit -m "Initial commit"git push -u origin maincode .index.htmlgit add .git commit -m "Add HTML content"git pushYou now know how to:
You have mastered the complete Git/GitHub/VSCode workflow!
| Level Navigation: 0 | 1 | 2 | Current Level: 3 |