|
@@ -916,6 +916,14 @@ class Repo(BaseRepo):
|
|
|
|
|
|
create = init_bare
|
|
|
|
|
|
+ def close(self):
|
|
|
+ self.object_store.close()
|
|
|
+
|
|
|
+ def __enter__(self):
|
|
|
+ return self
|
|
|
+
|
|
|
+ def __exit__(self, exc_type, exc_val, exc_tb):
|
|
|
+ self.close()
|
|
|
|
|
|
class MemoryRepo(BaseRepo):
|
|
|
"""Repo that stores refs, objects, and named files in memory.
|