git-stage
Alias for git add to stage changes
TLDR
Stage files
$ git stage [file]
Stage all changes$ git stage -A
Interactive staging$ git stage -p
SYNOPSIS
git stage [options] [files...]
DESCRIPTION
git stage is a built-in alias for `git add`. It stages changes for the next commit. The term "stage" more clearly describes the action of adding changes to the index than "add" does.
SEE ALSO
git-add(1), git-commit(1)
