gix 0.87.1

Interact with git repositories just like git would
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::note;

impl crate::Repository {
    /// Return a platform for repeated Git notes queries and mutations.
    ///
    /// Selected notes references do not have to exist. Missing references are treated
    /// as containing no notes rather than causing queries to fail.
    pub fn notes(&self) -> Result<note::Platform<'_>, crate::Error> {
        note::Platform::new(self)
    }
}