Skip to content

Commit

Permalink
check-attr: move to the top of working tree when in non-bare repository
Browse files Browse the repository at this point in the history
Lasse Makholm noticed that running "git check-attr" from a place
totally unrelated to $GIT_DIR and $GIT_WORK_TREE does not give
expected results.  I think it is because the command does not say it
wants to call setup_work_tree().

We still need to support use cases where only a bare repository is
involved, so unconditionally requiring a working tree would not work
well.  Instead, make a call only in a non-bare repository.

We may want to see if we want to do a similar fix in the opposite
direction to check-ignore.  The command unconditionally requires a
working tree, but it should be usable in a bare repository just like
check-attr attempts to be.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Feb 6, 2014
1 parent c4a7bce commit cdbf623
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builtin/check-attr.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,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,
Expand Down
10 changes: 10 additions & 0 deletions t/t0003-attributes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,16 @@ test_expect_success 'root subdir attribute test' '
attr_check subdir/a/i unspecified
'

test_expect_success 'using --git-dir and --work-tree' '
mkdir unreal real &&
git init real &&
echo "file test=in-real" >real/.gitattributes &&
(
cd unreal &&
attr_check file in-real "--git-dir ../real/.git --work-tree ../real"
)
'

test_expect_success 'setup bare' '
git clone --bare . bare.git
'
Expand Down

0 comments on commit cdbf623

Please sign in to comment.