Junio C Hamano <gitster@xxxxxxxxx> writes: > Teemu Likonen <tlikonen@xxxxxx> writes: > >>> Scott Chacon (1): >>> Add a built-in alias for 'stage' to the 'add' command >> >> I think there's a minor user-interface defect: >> >> $ git help stage >> No manual entry for gitstage > > ... > In that sense, I think the intention of the patch to add "stage" as an > additional verb, while clearly marking it as a synonym to the primary > command "add", is aimed at the right place and strikes the right balance. > > By the way, I think this should fix it, although it is very late and I > have no time to test it tonight myself. Ok, I lied. I'll go to bed after committing this. -- >8 -- From: Junio C Hamano <gitster@xxxxxxxxx> Date: Wed, 3 Dec 2008 00:30:34 -0800 Subject: [PATCH] Install git-stage in exec-path Earlier the plan was to eventually eradicate git-foo executables from the filesystem for all the built-in commands, but when we released 1.6.0 we decided not to do so. Instead, it has been promised that by prepending the output from $(git --exec-path) to your $PATH, you can keep using the dashed form of commands. This also allows "git stage" to appear in the autogenerated command list, which is used to offer man pages by "git help" command. Signed-off-by: Junio C Hamano <gitster@xxxxxxxxx> --- Makefile | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index 9577d6f..5158197 100644 --- a/Makefile +++ b/Makefile @@ -320,6 +320,7 @@ BUILT_INS += git-merge-subtree$X BUILT_INS += git-peek-remote$X BUILT_INS += git-repo-config$X BUILT_INS += git-show$X +BUILT_INS += git-stage$X BUILT_INS += git-status$X BUILT_INS += git-whatchanged$X -- 1.6.1.rc1.44.g06a3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html