From db7073d21cb7e0b920600cb3361621cad5c110f7 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Wed, 15 Oct 2025 20:53:24 -0400 Subject: [PATCH] Use git config for commit author instead of hardcoded 'User' - Update CreateCommit to accept separate authorName and authorEmail - Add GetGitConfig method to read user.name and user.email from config - GetGitConfig checks local repo config first, then global config - Update save.go to read author from git config before creating commits - Update workstream_manager.go to extract author from git commit - Update daemon/snapshot.go to use proper email for daemon commits - Update git/rebase.go to preserve author email during rebases Fixes issue where commits showed 'User ' instead of actual git user.name and user.email from config.