fsck: support refs pointing to promisor objects
[gitweb.git] / builtin / fsck.c
index 29342998fd7adb3aeafee01049d146591982a3fb..ee937bbdbc45f8223155cec07ec22acaf1e9929f 100644 (file)
@@ -434,6 +434,14 @@ static int fsck_handle_ref(const char *refname, const struct object_id *oid,
 
        obj = parse_object(oid);
        if (!obj) {
+               if (is_promisor_object(oid)) {
+                       /*
+                        * Increment default_refs anyway, because this is a
+                        * valid ref.
+                        */
+                        default_refs++;
+                        return 0;
+               }
                error("%s: invalid sha1 pointer %s", refname, oid_to_hex(oid));
                errors_found |= ERROR_REACHABLE;
                /* We'll continue with the rest despite the error.. */