Commands.app

git add

Basic Workflow

Add file contents to the staging area

Examples
Common usage examples

Stage specific file

git add file.txt

Stage all changes in current directory

git add .

Stage all changes in repository

git add -A

Interactively stage changes

git add -p
Related Commands
You might also find these useful