2
0
Эх сурвалжийг харах

Add ObjectStore.generate_pack_contents.

Jelmer Vernooij 16 жил өмнө
parent
commit
68ef883539

+ 4 - 0
dulwich/object_store.py

@@ -134,6 +134,10 @@ class BaseObjectStore(object):
         return ObjectStoreGraphWalker(heads, lambda sha: self[sha].parents)
         return ObjectStoreGraphWalker(heads, lambda sha: self[sha].parents)
 
 
 
 
+    def generate_pack_contents(self, have, want):
+        return self.iter_shas(self.find_missing_objects(have, want))
+
+
 class DiskObjectStore(BaseObjectStore):
 class DiskObjectStore(BaseObjectStore):
     """Git-style object store that exists on disk."""
     """Git-style object store that exists on disk."""