summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-25 18:46:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-25 18:46:45 (GMT)
commit4d27d8cbc4ac74fee7b64ca9182ad920b958655f (patch)
tree54c49a1ccc8e2063ceed1dc20ab7b7ef578a42c7 /builtin
parent6bf84263b3be507352f2edc9397e4ca6660be289 (diff)
parent4d4813a52f3722854a54bab046f4abfec13ef6ae (diff)
downloadgit-4d27d8cbc4ac74fee7b64ca9182ad920b958655f.zip
git-4d27d8cbc4ac74fee7b64ca9182ad920b958655f.tar.gz
git-4d27d8cbc4ac74fee7b64ca9182ad920b958655f.tar.bz2
Merge branch 'bc/blame-crlf-test' into maint
"git blame" assigned the blame to the copy in the working-tree if the repository is set to core.autocrlf=input and the file used CRLF line endings. * bc/blame-crlf-test: blame: correctly handle files regardless of autocrlf
Diffstat (limited to 'builtin')
-rw-r--r--builtin/blame.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c
index 128fc64..d8b2760 100644
--- a/builtin/blame.c
+++ b/builtin/blame.c
@@ -2095,7 +2095,6 @@ static struct commit *fake_working_tree_commit(struct diff_options *opt,
if (strbuf_read(&buf, 0, 0) < 0)
die_errno("failed to read from stdin");
}
- convert_to_git(path, buf.buf, buf.len, &buf, 0);
origin->file.ptr = buf.buf;
origin->file.size = buf.len;
pretend_sha1_file(buf.buf, buf.len, OBJ_BLOB, origin->blob_sha1);