6 git-stage - manage the staging area
12 'git stage' [options] [--] [<paths>...]
13 'git stage add' [options] [--] [<paths>...]
14 'git stage reset' [-q|--patch] [--] [<paths>...]
15 'git stage diff' [options] [<commit>] [--] [<paths>...]
16 'git stage rm' [options] [--] [<paths>...]
17 'git stage apply' [options] [--] [<paths>...]
23 This command is useful to manage the staging area through other subcommands.
28 With no arguments, it's a synonym for linkgit:git-add[1].
32 Adds file contents to the staging area. See linkgit:git-add[1].
36 Resets the staging area. See linkgit:git-reset[1].
40 View the changes you staged for the next commit. See linkgit:git-diff[1] --staged.
44 Remove files from the staging area only. See linkgit:git-rm[1] --staged.
48 Apply a patch to the staging area. See linkgit:git-apply[1] --staged.
52 Manually edit the staging area (as a diff).
64 Part of the linkgit:git[1] suite