Skip to main content

update-from-upstream-main

Update the current Remotion branch with the latest canonical main branch. Use when asked to update or sync from upstream main, merge the latest main into a feature branch, fast-forward local main, or bring a pull request branch up to date without rewriting published history.

설치로 이동

소스 정보

저장소
remotion-dev/remotion
최근 소스 활동
2026년 8월 7일 13:20
감지된 SKILL.md 언어
영어
스타
59,638
포크
4,567

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

파일 탐색기
2 개 파일

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
update-from-upstream-main
description
Update the current Remotion branch with the latest canonical main branch. Use when asked to update or sync from upstream main, merge the latest main into a feature branch, fast-forward local main, or bring a pull request branch up to date without rewriting published history.
# Update From Upstream Main Update from the canonical `remotion-dev/remotion` repository while preserving local work and published branch history. ## Workflow 1. Inspect the repository before changing it: ```bash git status --short --branch git branch --show-current git remote -v ``` Stop and report the state if an operation such as a merge or rebase is already in progress. A detached checkout is supported and must not prevent the update. If the working tree contains staged, unstaged, or untracked changes, stash them automatically and continue: ```bash git stash push --include-untracked --message "update-from-upstream-main: preserve local changes" git rev-parse stash@{0} ``` Record the created stash's commit ID so the same entry can be restored later. Do not treat uncommitted changes as a reason to stop. Do not include ignored files unless the user explicitly asks. 2. Select the canonical remote whose URL points to `remotion-dev/remotion`. Prefer `upstream` when it exists; otherwise use `origin`. If neither remote points to the canonical repository, stop and ask before adding or changing a remote. 3. Fetch the latest main branch without changing the working tree: ```bash git fetch <canonical-remote> main ``` 4. Update the checked-out branch: - On `main`, require a fast-forward: ```bash git merge --ff-only <canonical-remote>/main ``` - On a feature branch or detached checkout, merge main without opening an editor: ```bash git merge --no-edit <canonical-remote>/main ``` Do not rebase, reset, or force-push. A merge keeps published branch history intact and can be pushed normally; on a detached checkout, report that the resulting commit is still detached. 5. If the merge conflicts, resolve each file deliberately and preserve both the feature intent and upstream changes. Do not accept `ours` or `theirs` across the entire merge. Check every resolved file for leftover conflict markers before staging: ```bash rg -n '^(<{7}|={7}|>{7})' -- <resolved-files> ``` Inspect and remove any matches that are conflict markers. Then stage only the resolved files and finish the merge with: ```bash git commit --no-edit ``` 6. If step 1 created a stash, reapply it after the upstream update is complete: ```bash git stash apply --index <recorded-stash-commit> ``` Reapply the stash before reporting success or before stopping after a fetch or merge failure, provided no Git operation is still in progress. If applying the stash causes conflicts, resolve them deliberately without rerunning `git stash apply`. The stash entry remains as a recovery copy. After confirming that all stashed changes, including untracked files and their staged state, were restored, find the entry with the recorded commit ID in `git stash list --format='%gd %H'` and drop only that entry. Never pop or drop a pre-existing stash. 7. Validate the result. Always run `git diff --check` and `git diff --cached --check`. If conflicts were resolved or the combined changes could affect behavior, run the relevant package tests. For broad changes, run: ```bash bun run build bun run stylecheck ``` 8. Push only when the user asked to update a published branch or pull request. Use a normal push and stop if it is rejected: ```bash git push <canonical-remote> HEAD ``` Never force-push. 9. Report the previous and new commit, whether the checkout is detached, whether the update was a fast-forward or merge, whether local changes were stashed and successfully reapplied, any conflicts resolved, validation performed, and whether the branch was pushed.
GitHub에서 보기