diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:26:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-06 11:26:50 -0700 |
commit | e934c67b6683c1bd504646647b7ee04ee0d9e15b (patch) | |
tree | aedcc0fc5925cafdd9150701fbceb19f1b5fa901 /builtin/blame.c | |
parent | ee8213951a36cefabed7dd653965cffb6aee628e (diff) | |
parent | 4d4813a52f3722854a54bab046f4abfec13ef6ae (diff) | |
download | git-e934c67b6683c1bd504646647b7ee04ee0d9e15b.tar.gz git-e934c67b6683c1bd504646647b7ee04ee0d9e15b.tar.xz |
Merge branch 'bc/blame-crlf-test'
If a file contained CRLF line endings in a repository with
core.autocrlf=input, then blame always marked lines as "Not
Committed Yet", even if they were unmodified.
* bc/blame-crlf-test:
blame: correctly handle files regardless of autocrlf
Diffstat (limited to 'builtin/blame.c')
-rw-r--r-- | builtin/blame.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/blame.c b/builtin/blame.c index 3aa179330..a52a27914 100644 --- a/builtin/blame.c +++ b/builtin/blame.c @@ -2355,7 +2355,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); |