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.
INSTALL
sudo apt install git
sudo dnf install git
sudo pacman -S git
sudo apk add git
sudo zypper install git
brew install git
nix profile install nixpkgs#git
SEE ALSO
git-add(1), git-commit(1)
