Disable shadow repo git signing

This commit is contained in:
Saoud Rizwan 2025-01-09 13:30:18 -08:00
parent c4a9e50610
commit 4ba68df1ee

View file

@ -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 {