feat(cursor-origin): Create branches and commits - #141
Merged
Merged
Conversation
giovanni-guidini
approved these changes
Sep 24, 2026
wedamija
force-pushed
the
danf/origin-provider-contents
branch
from
September 24, 2026 18:14
0aa21da to
1e8a67e
Compare
wedamija
force-pushed
the
danf/origin-provider-commit-writes
branch
from
September 24, 2026 18:14
274b4e0 to
766affb
Compare
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Want reviews to match your repository better? Bugbot Learning can learn team-specific rules from PR activity. A team admin can enable Learning in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 766affb. Configure here.
wedamija
changed the base branch from
danf/origin-provider-contents
to
main
September 24, 2026 18:26
wedamija
force-pushed
the
danf/origin-provider-commit-writes
branch
from
September 24, 2026 18:28
766affb to
79ecb6a
Compare
wedamija
force-pushed
the
danf/origin-provider-commit-writes
branch
from
September 24, 2026 18:34
79ecb6a to
cb276c5
Compare
Add `create_branch`, `delete_branch`, and `create_commit`. Origin only commits to the branch head, so each commit is a compare-and-swap and branches cannot be forced. Creating an existing branch returns a conflict, and a failed commit removes the branch created for it. Commits without an author use the app as the author, since Origin requires one.
wedamija
force-pushed
the
danf/origin-provider-commit-writes
branch
from
September 24, 2026 18:37
cb276c5 to
729085b
Compare
create_commit deletes the branch it created when the commit fails. A gateway timeout can hide a commit that landed, and Origin lets a second writer create the same branch, so delete it only while it still points at the parent commit.
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.

Add
create_branch,delete_branch, andcreate_commit.Origin only commits to the branch head, so each commit is a compare-and-swap and branches cannot be forced. Creating an existing branch returns a conflict, and a failed commit removes the branch created for it.
Commits without an author use the app as the author, since Origin requires one.
Stacked on #137.