Switching writes to new ref store#1648
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR flips the repository’s default checkpoint backend configuration so new checkpoint writes use the git-refs store, aligning local/dev behavior with the newer per-checkpoint ref backend while keeping read behavior format-routed by checkpoint ID kind.
Changes:
- Update
.entire/settings.jsonto setcheckpoints.primary.typetogit-refs. - Adjust JSON formatting to accommodate the new
checkpointsblock.
dipree
approved these changes
Jul 6, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://entire.io/gh/entireio/cli/trails/767
Let's enable the new ref backend. All new writes will go there, all reads go to where the checkpoint is (easy check by different checkpoint format)
Note
Medium Risk
Changes where and how new checkpoints are persisted for anyone using this settings file; existing hex/git-branch checkpoints should still read via ID routing, but mixed backends increase operational surface during the migration.
Overview
Turns on the git-refs primary checkpoint backend for this repo’s checked-in Entire local settings by adding
checkpoints.primary.type: "git-refs". With that primary, new checkpoint writes go to the per-checkpoint git-ref store (ULID IDs) instead of the defaultgit-branch/ v1 layout; reads continue to resolve the correct backend from each checkpoint’s ID shape.Also fixes JSON formatting (trailing comma after
strategy) in the same file.Reviewed by Cursor Bugbot for commit 74b8eea. Configure here.