summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aab7486)
raw | patch | inline | side by side (parent: aab7486)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Fri, 4 Sep 2009 10:22:36 +0000 (12:22 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 28 Oct 2009 17:42:17 +0000 (10:42 -0700) |
Although 'git help -a' actually doesn't need to be run inside a git
repository and uses no repository-specific information, it looks for a git
directory. On 'git <TAB><TAB>' the bash completion runs 'git help -a' and
unnecessary searching for a git directory can be annoying in auto-mount
environments. With this commit, 'git help' no longer searches for a
repository when run with the -a option.
Reported by Vincent Danjean through http://bugs.debian.org/539273
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
repository and uses no repository-specific information, it looks for a git
directory. On 'git <TAB><TAB>' the bash completion runs 'git help -a' and
unnecessary searching for a git directory can be annoying in auto-mount
environments. With this commit, 'git help' no longer searches for a
repository when run with the -a option.
Reported by Vincent Danjean through http://bugs.debian.org/539273
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Gerrit Pape <pape@smarden.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-help.c | patch | blob | history |
diff --git a/builtin-help.c b/builtin-help.c
index e1ade8edd3c4f05771b286e9f9a6657ff05c7eb0..ca08519d9d6290f3cda4ee92e29e4acbf8325d0c 100644 (file)
--- a/builtin-help.c
+++ b/builtin-help.c
const char *alias;
load_command_list("git-", &main_cmds, &other_cmds);
- setup_git_directory_gently(&nongit);
- git_config(git_help_config, NULL);
-
argc = parse_options(argc, argv, prefix, builtin_help_options,
builtin_help_usage, 0);
return 0;
}
+ setup_git_directory_gently(&nongit);
+ git_config(git_help_config, NULL);
+
if (!argv[0]) {
printf("usage: %s\n\n", git_usage_string);
list_common_cmds_help();