pub trait Repo { // Required methods fn blob(&self, oid: Oid) -> Result<Blob, Error>; fn file(&self, path: &Path) -> Option<Blob>; }
A repository of Git blobs.
Lookup a blob from the repo.
Lookup a file in the workdir.