forked from simonw/claude-code-transcripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Goal
Bring local main up to date with upstream/main while preserving fork history.
Recommended Strategy (merge)
git checkout main
git fetch upstream
git merge upstream/main
uv run python -m pytest
git push origin mainAlternative (rebase)
git checkout main
git fetch upstream
git rebase upstream/main
uv run python -m pytest
git push origin main --force-with-leaseAcceptance Criteria
maincontains upstream changes- Tests pass
origin/mainupdated
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels