On Sun, Feb 26, 2012 at 06:11:30PM +0700, Nguyen Thai Ngoc Duy wrote: > "rev-list --objects" does check for blob existence, in finish_object(). Eck.. I think "--quiet --verify-objects" becomes "--quiet --objects" because of this code: -- 8< -- traverse_commit_list(&revs, quiet ? finish_commit : show_commit, quiet ? finish_object : show_object, &info); -- 8< -- Unless that's intentional, shouldn't we apply this patch? --quiet's interfering with rev-list's business sounds weird to me. -- 8< -- diff --git a/builtin/rev-list.c b/builtin/rev-list.c index 264e3ae..95fb605 100644 --- a/builtin/rev-list.c +++ b/builtin/rev-list.c @@ -172,19 +172,18 @@ static void finish_object(struct object *obj, const struct name_path *path, const char *name, void *cb_data) { + struct rev_list_info *info = cb_data; if (obj->type == OBJ_BLOB && !has_sha1_file(obj->sha1)) die("missing blob object '%s'", sha1_to_hex(obj->sha1)); + if (info->revs->verify_objects && !obj->parsed && obj->type != OBJ_COMMIT) + parse_object(obj->sha1); } static void show_object(struct object *obj, const struct name_path *path, const char *component, void *cb_data) { - struct rev_list_info *info = cb_data; - finish_object(obj, path, component, cb_data); - if (info->revs->verify_objects && !obj->parsed && obj->type != OBJ_COMMIT) - parse_object(obj->sha1); show_object_with_name(stdout, obj, path, component); } -- 8< -- -- Duy -- 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