gix 0.48.0

Interact with git repositories just like git would
Documentation
1
2
3
4
5
6
7
8
9
/// The error returned by [`Repository::attributes()`][crate::Repository::attributes()].
#[derive(Debug, thiserror::Error)]
#[allow(missing_docs)]
pub enum Error {
    #[error(transparent)]
    ConfigureAttributes(#[from] crate::config::attribute_stack::Error),
    #[error(transparent)]
    ConfigureExcludes(#[from] crate::config::exclude_stack::Error),
}