798 B
798 B
PR checks pass. Squash and merge the PR on both GitHub and Gitea.
- Squash-merge on GitHub:
gh pr merge --squashwith a clean, semantic commit message including the PR number. No Claude attribution lines. - Squash-merge on Gitea:
tea pr merge <index> --style squashwith the same message. - Push main to gitea to keep commits in sync:
git push gitea main. - Delete the remote feature branch on origin:
git push origin --delete <branch>. - Delete the remote feature branch on gitea:
git push gitea --delete <branch>. - Prune remote tracking refs:
git remote prune origin && git remote prune gitea. - If in a worktree, leave the local branch alone — Claude Code handles worktree cleanup on session exit. If NOT in a worktree, delete the local feature branch and switch to main.