blame: correctly handle a path that used to be a directory
commita9b2d42486ee0b461220bf3895114926d9ddf9be
authorJunio C Hamano <gitster@pobox.com>
Wed, 3 Jun 2009 07:43:22 +0000 (3 00:43 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 3 Jun 2009 07:49:34 +0000 (3 00:49 -0700)
tree2095415de94a148adfbc4ef960b8ac85e02660f8
parent8dc3a47c3edcee923225000e93f8052c50e5a004
blame: correctly handle a path that used to be a directory

When trying to see if the same path exists in the parent, we ran
"diff-tree" with pathspec set to the path we are interested in with the
parent, and expect either to have exactly one resulting filepair (either
"changed from the parent", "created when there was none") or nothing (when
there is no change from the parent).

If the path used to be a directory, however, we will also see unbounded
number of entries that talk about the files that used to exist underneath
the directory in question.  Correctly pick only the entry that describes
the path we are interested in in such a case (namely, the creation of the
path as a regular file).

Noticed by Ben Willard.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-blame.c
t/t8003-blame.sh