We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a47c55 commit 203549fCopy full SHA for 203549f
src/services/checkpoints/ShadowCheckpointService.ts
@@ -106,7 +106,7 @@ export abstract class ShadowCheckpointService extends EventEmitter {
106
this.baseHash = await git.revparse(["HEAD"])
107
} else {
108
this.log(`[${this.constructor.name}#initShadowGit] creating shadow git repo at ${this.checkpointsDir}`)
109
- await git.init()
+ await git.init({ "--template": "" })
110
await git.addConfig("core.worktree", this.workspaceDir) // Sets the working tree to the current workspace.
111
await git.addConfig("commit.gpgSign", "false") // Disable commit signing for shadow repo.
112
await git.addConfig("user.name", "Roo Code")
0 commit comments