Skip to content

Commit e0b09d2

Browse files
committedSep 30, 2024
add all keys for merge-configuration
1 parent b26eb26 commit e0b09d2

File tree

4 files changed

+46
-5
lines changed

4 files changed

+46
-5
lines changed
 

‎gix/src/config/tree/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ pub(crate) mod root {
4747
pub const INIT: sections::Init = sections::Init;
4848
/// The `mailmap` section.
4949
pub const MAILMAP: sections::Mailmap = sections::Mailmap;
50+
/// The `merge` section.
51+
pub const MERGE: sections::Merge = sections::Merge;
5052
/// The `pack` section.
5153
pub const PACK: sections::Pack = sections::Pack;
5254
/// The `protocol` section.
@@ -86,6 +88,7 @@ pub(crate) mod root {
8688
&Self::INDEX,
8789
&Self::INIT,
8890
&Self::MAILMAP,
91+
&Self::MERGE,
8992
&Self::PACK,
9093
&Self::PROTOCOL,
9194
&Self::PUSH,
@@ -105,7 +108,7 @@ mod sections;
105108
pub use sections::{
106109
branch, checkout, core, credential, extensions, fetch, gitoxide, http, index, protocol, push, remote, ssh, Author,
107110
Branch, Checkout, Clone, Committer, Core, Credential, Extensions, Fetch, Gitoxide, Http, Index, Init, Mailmap,
108-
Pack, Protocol, Push, Remote, Safe, Ssh, Url, User,
111+
Merge, Pack, Protocol, Push, Remote, Safe, Ssh, Url, User,
109112
};
110113
#[cfg(feature = "blob-diff")]
111114
pub use sections::{diff, Diff};

‎gix/src/config/tree/sections/merge.rs

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
use crate::config;
2+
use crate::config::tree::SubSectionRequirement;
3+
use crate::config::{
4+
tree::{keys, Key, Merge, Section},
5+
Tree,
6+
};
7+
8+
impl Merge {
9+
/// The `merge.renormalize` key
10+
pub const RENORMALIZE: keys::Boolean = keys::Boolean::new_boolean("renormalize", &Tree::MERGE);
11+
/// The `merge.default` key
12+
pub const DEFAULT: keys::String = keys::String::new_string("default", &Tree::MERGE);
13+
/// The `merge.<driver>.name` key.
14+
pub const DRIVER_NAME: keys::String = keys::String::new_string("name", &config::Tree::MERGE)
15+
.with_subsection_requirement(Some(SubSectionRequirement::Parameter("driver")));
16+
/// The `merge.<driver>.driver` key.
17+
pub const DRIVER_COMMAND: keys::Program = keys::Program::new_program("driver", &config::Tree::MERGE)
18+
.with_subsection_requirement(Some(SubSectionRequirement::Parameter("driver")));
19+
/// The `merge.<driver>.recursive` key.
20+
pub const DRIVER_RECURSIVE: keys::String = keys::String::new_string("recursive", &config::Tree::MERGE)
21+
.with_subsection_requirement(Some(SubSectionRequirement::Parameter("driver")));
22+
}
23+
24+
impl Section for Merge {
25+
fn name(&self) -> &str {
26+
"merge"
27+
}
28+
29+
fn keys(&self) -> &[&dyn Key] {
30+
&[
31+
&Self::RENORMALIZE,
32+
&Self::DEFAULT,
33+
&Self::DRIVER_NAME,
34+
&Self::DRIVER_COMMAND,
35+
&Self::DRIVER_RECURSIVE,
36+
]
37+
}
38+
}

‎gix/src/config/tree/sections/mod.rs

+4
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ mod init;
7676
pub struct Mailmap;
7777
mod mailmap;
7878

79+
#[derive(Copy, Clone, Default)]
80+
pub struct Merge;
81+
mod merge;
82+
7983
/// The `pack` top-level section.
8084
#[derive(Copy, Clone, Default)]
8185
pub struct Pack;

‎src/plumbing/progress.rs

-4
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,6 @@ static GIT_CONFIG: &[Record] = &[
146146
config: "index.sparse",
147147
usage: Planned("We can read sparse indices and support for it will be added early on")
148148
},
149-
Record {
150-
config: "merge.renormalize",
151-
usage: Planned("Once merging is being implemented, renormalization should be respected")
152-
},
153149
Record {
154150
config: "sparse.expectFilesOutsideOfPatterns",
155151
usage: Planned("A feature definitely worth having")

0 commit comments

Comments
 (0)
Please sign in to comment.