If stack sync encounters a rebase conflict:
- Resolve the conflict manually
- Run
git rebase --continue - Run
stack syncagain to continue with remaining branches
If you delete a parent branch, child branches become orphaned. To fix:
# Update the child's parent to point to the grandparent
git config branch.child-branch.stackparent mainTo remove a branch from the stack (but keep the branch):
git config --unset branch.my-branch.stackparent