Git Worktree Cleanup and Branch Reconciliation When managing multiple repos with stale branches and orphaned worktrees: (1) Identify worktrees attached to merged/stale branches using , (2) Remove stale worktrees with to unblock branch deletion, (3) Categorize remaining branches (merged, feature-complete, orphaned from history rewrites), (4) For branches with unmerged content, pull latest main first to detect upstream merges, then resolve conflicts by keeping HEAD (main) on surrounding files while preserving the branch's actual fix logic, (5) Delete superseded branches and verify all repos are…