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.
git_merge_commit_email
GitConfig
1 parent 38e3a57 commit 05043a3Copy full SHA for 05043a3
src/bootstrap/src/core/config/config.rs
@@ -2509,6 +2509,7 @@ impl Config {
2509
GitConfig {
2510
git_repository: &self.stage0_metadata.config.git_repository,
2511
nightly_branch: &self.stage0_metadata.config.nightly_branch,
2512
+ git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
2513
}
2514
2515
src/tools/build_helper/src/git.rs
@@ -4,6 +4,7 @@ use std::process::{Command, Stdio};
4
pub struct GitConfig<'a> {
5
pub git_repository: &'a str,
6
pub nightly_branch: &'a str,
7
+ pub git_merge_commit_email: &'a str,
8
9
10
/// Runs a command and returns the output
0 commit comments