codex-lv2-may-2025

Navigation

0 | 1 | 2 | Current Level: 3 | 4 | 5 | 6 | 7 | 8


Lesson: Make a Change and Commit It

🎯 Objective

Edit a file in VSCode and make your first Git commit.


✅ Step 3: Make a Change and Commit It

A. Edit your README

Click on README.md in VSCode and type:

# vscode-lesson1

a project to learn vscode with

✅ You’ve now documented your project.

B. Save and commit your change

In the terminal inside VSCode, type:

git add README.md
git commit -m "updated readme"

✅ You’ve made your first Git commit! 🎉


✅ Summary

You have successfully:

You’re now comfortable with basic file editing and Git workflow in VSCode!


Navigation

0 | 1 | 2 | Current Level: 3 | 4 | 5 | 6 | 7 | 8