We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 78a0112 + 69f7e9d commit ce6435dCopy full SHA for ce6435d
src/bors/gitops.rs
@@ -90,17 +90,21 @@ impl Git {
90
token.expose_secret()
91
);
92
93
- tracing::debug!("Pushing commit");
+ tracing::debug!(
94
+ "Pushing commit to https://bors:<token>@github.com/{target_repo}.git, refspec `{refspec}`"
95
+ );
96
97
// And then push the commit
98
run_command(
99
tokio::process::Command::new(&self.git)
100
.kill_on_drop(true)
101
.current_dir(&clone_path)
102
+ .env("GIT_TRACE", "1")
103
// Do not store the token on disk
- .arg("-c")
- .arg("credential.helper=")
104
+ // .arg("-c")
105
+ // .arg("credential.helper=")
106
.arg("push")
107
+ .arg("-v")
108
.arg(&target_repo_url)
109
.arg(refspec),
110
)
0 commit comments