test: remove httpd tests that ask for user
[git] / Documentation / git-stage.txt
1 git-stage(1)
2 ============
3
4 NAME
5 ----
6 git-stage - manage the staging area
7
8
9 SYNOPSIS
10 --------
11 [verse]
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>...]
18 'git stage edit'
19
20 DESCRIPTION
21 -----------
22
23 This command is useful to manage the staging area through other subcommands.
24
25 COMMANDS
26 --------
27
28 With no arguments, it's a synonym for linkgit:git-add[1].
29
30 'add'::
31
32 Adds file contents to the staging area. See linkgit:git-add[1].
33
34 'reset'::
35
36 Resets the staging area. See linkgit:git-reset[1].
37
38 'diff'::
39
40 View the changes you staged for the next commit. See linkgit:git-diff[1] --staged.
41
42 'rm'::
43
44 Remove files from the staging area only. See linkgit:git-rm[1] --staged.
45
46 'apply'::
47
48 Apply a patch to the staging area. See linkgit:git-apply[1] --staged.
49
50 'edit'::
51
52 Manually edit the staging area (as a diff).
53
54 SEE ALSO
55 --------
56 linkgit:git-add[1]
57 linkgit:git-reset[1]
58 linkgit:git-diff[1]
59 linkgit:git-rm[1]
60 linkgit:git-apply[1]
61
62 GIT
63 ---
64 Part of the linkgit:git[1] suite