LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

git-stage

Alias for git add to stage changes

TLDR

Stage files
$ git stage [file]
copy
Stage all changes
$ git stage -A
copy
Interactive staging
$ git stage -p
copy

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
copy
sudo dnf install git
copy
sudo pacman -S git
copy
sudo apk add git
copy
sudo zypper install git
copy
brew install git
copy
nix profile install nixpkgs#git
copy

SEE ALSO

RESOURCES

Copied to clipboard
Kai