diff --git a/crates/radicle/src/git/raw.rs b/crates/radicle/src/git/raw.rs index 1246d071..5824c8e9 100644 --- a/crates/radicle/src/git/raw.rs +++ b/crates/radicle/src/git/raw.rs @@ -6,10 +6,12 @@ // Re-exports that are only used within this crate. pub(crate) use git2::{ - message_trailers_strs, AutotagOption, Blob, Config, FetchOptions, FetchPrune, Object, Revwalk, - Sort, + message_trailers_strs, AutotagOption, Blob, FetchOptions, FetchPrune, Object, Revwalk, Sort, }; +#[cfg(unix)] +pub(crate) use git2::Config; + // Re-exports that are only used within this crate for testing. #[cfg(any(test, feature = "test"))] pub(crate) use git2::RemoteCallbacks;