git add
Use
git add README.md
What It Does
git add stages changes for the next commit.
Practice
Run git status before and after staging so you can see what changed.
Watch Out
Staged does not mean saved forever. The commit saves the checkpoint.
Docs Pointers
- Read git, git status, and git commit.
- Run
git help add.

Linux Foundations