[TRIVIAL PATCH 1/1] Make git-annotate use RUN_SETUP
From: Andrew Ruder <hidden>
Date: 2016-06-15 22:43:11
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Andrew Ruder <hidden>
Date: 2016-06-15 22:43:11
Subsystem:
the rest · Maintainer:
Linus Torvalds
The USE_PAGER was unnecessary as git-blame/git-annotate specifically setup the pager when --incremental is not specified. Prior to this patch git annotate somefileinasubdirectory.c would fail (while git blame somefileinasubdirectory.c would succeed). Signed-off-by: Andrew Ruder <redacted> --- git.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/git.c b/git.c
index f200907..eeb2c0c 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 }, { "apply", cmd_apply }, { "archive", cmd_archive }, { "blame", cmd_blame, RUN_SETUP },
--
1.5.2.14.g45bde-dirty