diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-03-18 14:03:03 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-03-18 14:03:03 -0700 |
commit | a8b31316ef90153f148b685a802195885d5195f4 (patch) | |
tree | bd98cb4fb6c37f604b5d137669e8a5787632fdbb /builtin | |
parent | Merge branch 'bk/refresh-missing-ok-in-merge-recursive' into maint (diff) | |
parent | check-attr: move to the top of working tree when in non-bare repository (diff) | |
download | tgif-a8b31316ef90153f148b685a802195885d5195f4.tar.xz |
Merge branch 'jc/check-attr-honor-working-tree' into maint
"git check-attr" when working on a repository with a working tree
did not work well when the working tree was specified via the
--work-tree (and obviously with --git-dir) option.
* jc/check-attr-honor-working-tree:
check-attr: move to the top of working tree when in non-bare repository
t0003: do not chdir the whole test process
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/check-attr.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/builtin/check-attr.c b/builtin/check-attr.c index e9af7b2bfb..5600ec3f61 100644 --- a/builtin/check-attr.c +++ b/builtin/check-attr.c @@ -102,6 +102,9 @@ int cmd_check_attr(int argc, const char **argv, const char *prefix) struct git_attr_check *check; int cnt, i, doubledash, filei; + if (!is_bare_repository()) + setup_work_tree(); + git_config(git_default_config, NULL); argc = parse_options(argc, argv, prefix, check_attr_options, |