mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
11920d28da
This comes from conversation at the GitTogether where we thought it would be helpful to be able to teach people to 'stage' files because it tends to cause confusion when told that they have to keep 'add'ing them. This continues the movement to start referring to the index as a staging area (eg: the --staged alias to 'git diff'). Also adds a doc file for 'git stage' that basically points to the docs for 'git add'. Signed-off-by: Scott Chacon <schacon@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
19 lines
258 B
Text
19 lines
258 B
Text
git-stage(1)
|
|
==============
|
|
|
|
NAME
|
|
----
|
|
git-stage - Add file contents to the staging area
|
|
|
|
|
|
SYNOPSIS
|
|
--------
|
|
[verse]
|
|
'git stage' args...
|
|
|
|
|
|
DESCRIPTION
|
|
-----------
|
|
|
|
This is a synonym for linkgit:git-add[1]. Please refer to the
|
|
documentation of that command.
|