We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdce6e commit 0bebe52Copy full SHA for 0bebe52
src/plumbing/main.rs
@@ -106,8 +106,12 @@ pub fn main() -> Result<()> {
106
};
107
mapping.full.modify(to_match_settings);
108
mapping.reduced.modify(to_match_settings);
109
- let mut repo = gix::ThreadSafeRepository::discover_opts(repository, Default::default(), mapping)
110
- .map(gix::Repository::from)?;
+ let mut repo = gix::ThreadSafeRepository::discover_with_environment_overrides_opts(
+ repository,
111
+ Default::default(),
112
+ mapping,
113
+ )
114
+ .map(gix::Repository::from)?;
115
if !config.is_empty() {
116
repo.config_snapshot_mut()
117
.append_config(config.iter(), gix::config::Source::Cli)
0 commit comments