'git blame' fails on a file which was changed from a directory to a file in a single commit. This test shows the failure. Signed-off-by: Ben Willard <benwillard@xxxxxxxxx> --- t/t8006-blame.sh | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) create mode 100755 t/t8006-blame.sh diff --git a/t/t8006-blame.sh b/t/t8006-blame.sh new file mode 100755 index 0000000..7c271f0 --- /dev/null +++ b/t/t8006-blame.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +test_description='git blame on file which changed from a directory to a file in the same commit' +. ./test-lib.sh + +test_expect_success 'setup' ' + mkdir dir && + touch dir/file && + git add dir/file && + git commit -m "Add dir/file" && + git rm dir/file && + echo "File contents" > dir && + git add dir && + git commit -m "Add dir as a file" +' + +test_expect_failure 'blame runs on dir' ' + git blame dir +' + +test_done -- 1.6.3.1.279.gd4bf4 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html