aboutsummaryrefslogtreecommitdiff
path: root/git.c
diff options
context:
space:
mode:
authorScott Chacon <schacon@gmail.com>2008-12-01 22:14:55 -0800
committerJunio C Hamano <gitster@pobox.com>2008-12-02 16:13:16 -0800
commit11920d28da1ac1b65eb4041c1b7355924e5d1366 (patch)
tree28c1936752ae6e0bb122bf128734b88bb0f713a9 /git.c
parentd404bf0288ac1a2c4276d009c0e1c88519e5a7c9 (diff)
downloadgit-11920d28da1ac1b65eb4041c1b7355924e5d1366.tar.gz
git-11920d28da1ac1b65eb4041c1b7355924e5d1366.tar.xz
Add a built-in alias for 'stage' to the 'add' command
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>
Diffstat (limited to 'git.c')
-rw-r--r--git.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/git.c b/git.c
index 89feb0b6d..9e5813cc9 100644
--- a/git.c
+++ b/git.c
@@ -266,6 +266,7 @@ static void handle_internal_command(int argc, const char **argv)
const char *cmd = argv[0];
static struct cmd_struct commands[] = {
{ "add", cmd_add, RUN_SETUP | NEED_WORK_TREE },
+ { "stage", cmd_add, RUN_SETUP | NEED_WORK_TREE },
{ "annotate", cmd_annotate, RUN_SETUP },
{ "apply", cmd_apply },
{ "archive", cmd_archive },