Skip to content

Commit

Permalink
Merge branch 'jk/attr-macro-fix'
Browse files Browse the repository at this point in the history
Asking "git check-attr" about a macro (e.g. "binary") on a specific
path did not work correctly, even though "git check-attr -a" listed
such a macro correctly.  This has been corrected.

* jk/attr-macro-fix:
  attr: do not mark queried macros as unset
  • Loading branch information
gitster committed Feb 5, 2019
2 parents 11494da + 7b95849 commit 02bf766
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 15 deletions.
16 changes: 1 addition & 15 deletions attr.c
Original file line number Diff line number Diff line change
Expand Up @@ -1092,7 +1092,7 @@ static void collect_some_attrs(const struct index_state *istate,
const char *path,
struct attr_check *check)
{
int i, pathlen, rem, dirlen;
int pathlen, rem, dirlen;
const char *cp, *last_slash = NULL;
int basename_offset;

Expand All @@ -1113,20 +1113,6 @@ static void collect_some_attrs(const struct index_state *istate,
all_attrs_init(&g_attr_hashmap, check);
determine_macros(check->all_attrs, check->stack);

if (check->nr) {
rem = 0;
for (i = 0; i < check->nr; i++) {
int n = check->items[i].attr->attr_nr;
struct all_attrs_item *item = &check->all_attrs[n];
if (item->macro) {
item->value = ATTR__UNSET;
rem++;
}
}
if (rem == check->nr)
return;
}

rem = check->all_attrs_nr;
fill(path, pathlen, basename_offset, check->stack, check->all_attrs, rem);
}
Expand Down
20 changes: 20 additions & 0 deletions t/t0003-attributes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -322,4 +322,24 @@ test_expect_success 'bare repository: test info/attributes' '
)
'

test_expect_success 'binary macro expanded by -a' '
echo "file binary" >.gitattributes &&
cat >expect <<-\EOF &&
file: binary: set
file: diff: unset
file: merge: unset
file: text: unset
EOF
git check-attr -a file >actual &&
test_cmp expect actual
'


test_expect_success 'query binary macro directly' '
echo "file binary" >.gitattributes &&
echo file: binary: set >expect &&
git check-attr binary file >actual &&
test_cmp expect actual
'

test_done

0 comments on commit 02bf766

Please sign in to comment.