From 2fba8366ed1e77685c83bbb0fa353c11624f0121 Mon Sep 17 00:00:00 2001 From: Frank Lichtenheld Date: Fri, 14 Mar 2008 18:29:27 +0100 Subject: [PATCH] var: Don't require to be in a git repository. git var works fine even when not called in a git repository. So don't require it. This will make it possible to remove this pre-condition for some other git commands as well. Signed-off-by: Frank Lichtenheld Signed-off-by: Junio C Hamano --- var.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/var.c b/var.c index 0de0efa2a..c20ac919b 100644 --- a/var.c +++ b/var.c @@ -51,11 +51,12 @@ static int show_config(const char *var, const char *value) int main(int argc, char **argv) { const char *val; + int nongit; if (argc != 2) { usage(var_usage); } - setup_git_directory(); + setup_git_directory_gently(&nongit); val = NULL; if (strcmp(argv[1], "-l") == 0) { -- 2.30.2