# git add .

`git add .`

Stage every change for the next commit.

## What each part does

- `git` — command — track changes to your project and share them
- `add` — argument: a file, a folder, or text
- `.` — argument: a file, a folder, or text

Source: https://zero2vibecode.com/explain/git-add-all
