From 4ba68df1ee6498e51ec825a8025aa1b387594d39 Mon Sep 17 00:00:00 2001 From: Saoud Rizwan <7799382+saoudrizwan@users.noreply.github.com> Date: Thu, 9 Jan 2025 13:30:18 -0800 Subject: [PATCH] Disable shadow repo git signing --- src/integrations/checkpoints/CheckpointTracker.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/integrations/checkpoints/CheckpointTracker.ts b/src/integrations/checkpoints/CheckpointTracker.ts index e7e6ab381d..472ff9ed78 100644 --- a/src/integrations/checkpoints/CheckpointTracker.ts +++ b/src/integrations/checkpoints/CheckpointTracker.ts @@ -105,6 +105,9 @@ class CheckpointTracker { await git.addConfig("core.worktree", this.cwd) // sets the working tree to the current workspace + // Disable commit signing for shadow repo + await git.addConfig("commit.gpgSign", "false") + // Get LFS patterns from workspace if they exist let lfsPatterns: string[] = [] try {