From: Junio C Hamano Date: Mon, 21 May 2007 02:56:28 +0000 (-0700) Subject: annotate: make it work from subdirectories. X-Git-Tag: v1.5.2.1~23^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5b6dedd6a0b7566f7e8466b6aefe8f019c52f5d3;p=git.git annotate: make it work from subdirectories. Signed-off-by: Junio C Hamano --- diff --git a/git.c b/git.c index 7def319e6..3d0754cba 100644 --- a/git.c +++ b/git.c @@ -225,7 +225,7 @@ static void handle_internal_command(int argc, const char **argv, char **envp) int option; } commands[] = { { "add", cmd_add, RUN_SETUP | NOT_BARE }, - { "annotate", cmd_annotate, USE_PAGER }, + { "annotate", cmd_annotate, RUN_SETUP | USE_PAGER }, { "apply", cmd_apply }, { "archive", cmd_archive }, { "blame", cmd_blame, RUN_SETUP },