manager: Reduce noise from git commands

This commit is contained in:
Rahix 2025-05-22 17:20:01 +02:00
parent 4d7bc0742e
commit e418d9d720

View file

@ -34,6 +34,8 @@ pub async fn render_and_publish(
.arg("-C") .arg("-C")
.arg(&render_repo) .arg(&render_repo)
.arg("init") .arg("init")
.arg("--initial-branch=render")
.arg("--quiet")
.success() .success()
.context("Failed to initialize render repository")?; .context("Failed to initialize render repository")?;
@ -88,6 +90,7 @@ pub async fn render_and_publish(
.arg(&render_repo) .arg(&render_repo)
.arg("push") .arg("push")
.arg("--force") .arg("--force")
.arg("--quiet")
.arg(repo_auth_url.to_string()) .arg(repo_auth_url.to_string())
.arg("HEAD:refs/heads/render") .arg("HEAD:refs/heads/render")
.status() .status()