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 e10d38c commit 453a5c9Copy full SHA for 453a5c9
src/services/checkpoints/ShadowCheckpointService.ts
@@ -240,7 +240,7 @@ export abstract class ShadowCheckpointService extends EventEmitter {
240
241
const startTime = Date.now()
242
await this.stageAll(this.git)
243
- const commitArgs = options?.allowEmpty ? { "--allow-empty": null, "--no-verify": null } : undefined
+ const commitArgs = options?.allowEmpty ? { "--allow-empty": null } : undefined
244
const result = await this.git.commit(message, commitArgs)
245
const fromHash = this._checkpoints[this._checkpoints.length - 1] ?? this.baseHash!
246
const toHash = result.commit || fromHash
0 commit comments