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 a134bc6 commit da09ea4Copy full SHA for da09ea4
src/bootstrap/src/core/config/config.rs
@@ -2512,6 +2512,7 @@ impl Config {
2512
GitConfig {
2513
git_repository: &self.stage0_metadata.config.git_repository,
2514
nightly_branch: &self.stage0_metadata.config.nightly_branch,
2515
+ git_merge_commit_email: &self.stage0_metadata.config.git_merge_commit_email,
2516
}
2517
2518
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