Loading...
Loading...
Guide a safe git rebase of the current branch onto a target branch, including conflict triage and resolution steps. Use when asked to rebase, update a branch, or resolve rebase conflicts.
npx skill4agent add jmerta/codex-skills rebase-assistantgit remote show origingit status -sbgit fetch --prunegit branch backup/<current-branch>git rebase <target-branch>git status -sbgit diff --name-only --diff-filter=Ugit show :1:<path>git show :2:<path>git show :3:<path>git checkout --ours <path>git checkout --theirs <path>git add <path>git rebase --continuegit status -sbgit reset --hardgit clean -fdgit rebase --abort