summaryrefslogtreecommitdiffstats
path: root/vendor/gix/src/config/cache/init.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gix/src/config/cache/init.rs')
-rw-r--r--vendor/gix/src/config/cache/init.rs18
1 files changed, 11 insertions, 7 deletions
diff --git a/vendor/gix/src/config/cache/init.rs b/vendor/gix/src/config/cache/init.rs
index ee20e0354..6fcbcc4ec 100644
--- a/vendor/gix/src/config/cache/init.rs
+++ b/vendor/gix/src/config/cache/init.rs
@@ -151,7 +151,7 @@ impl Cache {
lenient_config,
)?;
let object_kind_hint = util::disambiguate_hint(&config, lenient_config)?;
- let (pack_cache_bytes, object_cache_bytes) =
+ let (static_pack_cache_limit_bytes, pack_cache_bytes, object_cache_bytes) =
util::parse_object_caches(&config, lenient_config, filter_config_section)?;
// NOTE: When adding a new initial cache, consider adjusting `reread_values_and_clear_caches()` as well.
Ok(Cache {
@@ -159,6 +159,7 @@ impl Cache {
use_multi_pack_index,
object_hash,
object_kind_hint,
+ static_pack_cache_limit_bytes,
pack_cache_bytes,
object_cache_bytes,
reflog,
@@ -222,8 +223,11 @@ impl Cache {
self.url_rewrite = Default::default();
self.diff_renames = Default::default();
self.diff_algorithm = Default::default();
- (self.pack_cache_bytes, self.object_cache_bytes) =
- util::parse_object_caches(config, self.lenient_config, self.filter_config_section)?;
+ (
+ self.static_pack_cache_limit_bytes,
+ self.pack_cache_bytes,
+ self.object_cache_bytes,
+ ) = util::parse_object_caches(config, self.lenient_config, self.filter_config_section)?;
#[cfg(any(feature = "blocking-network-client", feature = "async-network-client"))]
{
self.url_scheme = Default::default();
@@ -423,10 +427,6 @@ fn apply_environment_overrides(
objects,
&[
{
- let key = &gitoxide::Objects::NO_REPLACE;
- (env(key), key.name)
- },
- {
let key = &gitoxide::Objects::REPLACE_REF_BASE;
(env(key), key.name)
},
@@ -487,6 +487,10 @@ fn apply_environment_overrides(
let key = &Core::SSH_COMMAND;
(env(key), key.name, git_prefix)
},
+ {
+ let key = &Core::USE_REPLACE_REFS;
+ (env(key), key.name, objects)
+ },
] {
if let Some(value) = var_as_bstring(var, permission) {
section.push_with_comment(