rust-lang / git2-rs

libgit2 bindings for Rust
https://docs.rs/git2
Apache License 2.0
1.69k stars 387 forks source link

Add docs about Repository::index ownership. #922

Closed ehuss closed 1 year ago

ehuss commented 1 year ago

When doing something like let index = Repository::open("foo")?.index()?;, the resulting index can't do very much since many of its methods will fail (with errors like This operation is not allowed against bare repositories). This adds some documentation about this behavior.

There are some alternate solutions here, but I didn't find them very palatable:

There are a few other "owned" types, including git_odb, git_refdb, and git_config. However, those don't seem to have the same issues as git_index, since they are mostly revolved around caching.

I think adding a lifetime is still an option, but I figure this would be a good solution for now.

closes #897