Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 565 Bytes

File metadata and controls

26 lines (17 loc) · 565 Bytes

Troubleshooting

Rebase Conflicts

If stack sync encounters a rebase conflict:

  1. Resolve the conflict manually
  2. Run git rebase --continue
  3. Run stack sync again to continue with remaining branches

Orphaned 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 main

Remove from Stack

To remove a branch from the stack (but keep the branch):

git config --unset branch.my-branch.stackparent