Add file contents to the staging area
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