Commit Your Changes

** Git & GitHub in Practice: Push, Pull & Heal (Part 1 of 3)
Lesson Content
0% Complete

Commit Your Changes

Run these commands in the terminal:

git status
git add .
git commit -m "Added my first file"
👉 What students learn:
  • git status → checks changes
  • git add . → stages changes
  • git commit → saves changes locally

Course Outline