Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx> --- builtin/log.c | 9 ++++++++- t/t1050-large.sh | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/builtin/log.c b/builtin/log.c index 7d1f6f8..4c4b17a 100644 --- a/builtin/log.c +++ b/builtin/log.c @@ -386,13 +386,20 @@ static int show_object(const unsigned char *sha1, int show_tag_object, { unsigned long size; enum object_type type; - char *buf = read_sha1_file(sha1, &type, &size); + char *buf; int offset = 0; + if (!show_tag_object) { + fflush(stdout); + return streaming_write_sha1(1, 0, sha1, OBJ_ANY, NULL); + } + + buf = read_sha1_file(sha1, &type, &size); if (!buf) return error(_("Could not read object %s"), sha1_to_hex(sha1)); if (show_tag_object) + assert(type == OBJ_TAG); while (offset < size && buf[offset] != '\n') { int new_offset = offset + 1; while (new_offset < size && buf[new_offset++] != '\n') diff --git a/t/t1050-large.sh b/t/t1050-large.sh index 39a3e77..66acb3b 100755 --- a/t/t1050-large.sh +++ b/t/t1050-large.sh @@ -118,7 +118,7 @@ test_expect_success 'cat-file a large file' ' git cat-file blob :large1 >/dev/null ' -test_expect_failure 'git-show a large file' ' +test_expect_success 'git-show a large file' ' git show :large1 >/dev/null ' -- 1.7.3.1.256.g2539c.dirty -- 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