You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
warning(_("You are attempting to fetch %s, which is in the commit graph file but not in the object database."),
819
+
oid_to_hex(oid));
820
+
warning(_("This is probably due to repo corruption."));
821
+
warning(_("If you are attempting to repair this repo corruption by refetching the missing object, use 'git fetch --refetch' with the missing object."));
822
+
}
823
+
823
824
/*
824
825
* Returns 1 if every object pointed to by the given remote refs is available
825
826
* locally and reachable from a local ref, and 0 otherwise.
@@ -841,6 +842,10 @@ static int everything_local(struct fetch_pack_args *args,
841
842
ref->name);
842
843
continue;
843
844
}
845
+
if (o->flags&COMPLETE_FROM_COMMIT_GRAPH) {
846
+
if (!has_object(the_repository, remote, 0))
847
+
warn_in_commit_graph_only(remote);
848
+
}
844
849
print_verbose(args, _("already have %s (%s)"), oid_to_hex(remote),
0 commit comments