codex-lv2-may-2025

Level Navigation: 0 1 2 Current Level: 3


Lesson: Complete Workflow Practice

🎯 Objective

Practice the entire process from memory using a cheat sheet.


✅ Step 8: Challenge — Practice from Memory or Notes

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:

  1. mkdir project-name && cd project-name
  2. git init
  3. touch index.html style.css
  4. Create a repo on GitHub (do not initialize with README)
  5. git remote add origin https://github.com/YOUR-USERNAME/REPO-NAME.git
  6. git branch -M main
  7. git add .
  8. git commit -m "Initial commit"
  9. git push -u origin main
  10. code .
  11. Add HTML content in index.html
  12. git add .
  13. git commit -m "Add HTML content"
  14. git push

✅ Summary

You now know how to:

You have mastered the complete Git/GitHub/VSCode workflow!


Level Navigation: 0 1 2 Current Level: 3