[codex] Sync upstream ancestry without changing fork tree#24
Merged
aaditagrawal merged 9 commits intomainfrom Mar 18, 2026
Merged
[codex] Sync upstream ancestry without changing fork tree#24aaditagrawal merged 9 commits intomainfrom
aaditagrawal merged 9 commits intomainfrom
Conversation
…otgg#972) Co-authored-by: Julius Marminge <julius0216@outlook.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
Co-authored-by: Julius Marminge <julius0216@outlook.com>
|
Important Review skippedDraft detected. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Comment |
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.
Summary
This PR performs an ancestry-sync merge of
upstream/maininto the fork without changing the working tree.The goal is to clear the fork's "behind upstream" count after earlier upstream fixes were already ported into the fork through cherry-picks, manual conflict resolution, and fork-native follow-up work. GitHub compares commit ancestry rather than patch equivalence, so the fork still showed
8 behindeven though the code for those upstream changes was already present.What This Does
This branch merges
upstream/mainusing theoursstrategy. That records upstream as a parent in history while intentionally keeping the fork's current tree exactly as-is.In practice, that means:
Why This Is Safe Here
This is appropriate here because the previously missing upstream commits were already present in substance in the fork:
This PR is therefore a history reconciliation step, not a content update.
Validation
I ran the required repo checks successfully:
bun fmtbun lintbun typecheck