feat(dolt): auto-commit write commands and set explicit commit authors (#1267)

* /{cmd,docs,internal}: autocommit writes in dolt backend

Executed-By: beads/crew/emma
Rig: beads
Role: crew

* /{cmd,internal}: fix commit author

Executed-By: beads/crew/emma
Rig: beads
Role: crew

* /cmd/bd: fix race condition

Executed-By: beads/crew/emma
Rig: beads
Role: crew

---------

Co-authored-by: Test <test@example.com>
This commit is contained in:
Dustin Brown
2026-01-25 17:02:12 -08:00
committed by GitHub
parent 9f0a85d111
commit 132f9d2f6f
3 changed files with 23 additions and 10 deletions

View File

@@ -407,8 +407,7 @@ NOTE: Import requires direct database access and does not work with daemon mode.
fmt.Fprintf(os.Stderr, "\nAll text and dependency references have been updated.\n")
}
// Mark this command as having performed a write if it changed anything.
// This enables Dolt auto-commit in PersistentPostRun.
// Record that this command performed a write (for Dolt auto-commit).
if result.Created > 0 || result.Updated > 0 || len(result.IDMapping) > 0 {
commandDidWrite.Store(true)
}