@@ -21,7 +21,7 @@ pub struct PrepareFetch {
2121 /// The name of the remote, which defaults to `origin` if not overridden.
2222 remote_name : Option < BString > ,
2323 /// Additional config `values` that are applied in-memory before starting the fetch process.
24- api_config_overrides : Vec < BString > ,
24+ config_overrides : Vec < BString > ,
2525 /// A function to configure a remote prior to fetching a pack.
2626 configure_remote : Option < ConfigureRemoteFn > ,
2727 /// A function to configure a connection before using it.
@@ -128,7 +128,7 @@ impl PrepareFetch {
128128 #[ cfg( any( feature = "async-network-client" , feature = "blocking-network-client" ) ) ]
129129 fetch_options : Default :: default ( ) ,
130130 repo : Some ( repo) ,
131- api_config_overrides : Vec :: new ( ) ,
131+ config_overrides : Vec :: new ( ) ,
132132 remote_name : None ,
133133 configure_remote : None ,
134134 #[ cfg( any( feature = "async-network-client" , feature = "blocking-network-client" ) ) ]
@@ -147,8 +147,6 @@ pub struct PrepareCheckout {
147147 pub ( self ) repo : Option < crate :: Repository > ,
148148}
149149
150- mod access;
151-
152150// This module encapsulates functionality that works with both feature toggles. Can be combined with `fetch`
153151// once async and clone are a thing.
154152#[ cfg( any( feature = "async-network-client" , feature = "blocking-network-client" ) ) ]
@@ -184,6 +182,8 @@ mod access_feat {
184182#[ cfg( any( feature = "async-network-client-async-std" , feature = "blocking-network-client" ) ) ]
185183pub mod fetch;
186184
185+ mod access;
186+
187187///
188188#[ cfg( feature = "worktree-mutation" ) ]
189189pub mod checkout;
0 commit comments