From 822de848fc1803dbc6032f90ef449b5b37717667 Mon Sep 17 00:00:00 2001 From: Jesper Jensen Date: Tue, 3 Feb 2026 22:14:12 +0100 Subject: Set the username and email differently --- src/main.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4dc8dfc..49ffcfb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -695,11 +695,13 @@ fn run_tool(db: &Connection, auth: &mut Auth, repos: &Vec, mut infil let mut gitcmd = std::process::Command::new("git"); gitcmd + .arg("-c") + .arg("user.name=vbump") + .arg("-c") + .arg("user.email=jesper@jnsn.dev") .arg("-C") .arg(&repo.dest) .arg("commit") - .arg("--author") - .arg("vbump <>") .arg("--all") .arg("--message") .arg("Update versions"); -- cgit v1.2.3