From 7e9d372d96897944b4c9d54f48e260c1aa75ec96 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Fri, 27 Feb 2026 07:59:46 -0800 Subject: [PATCH] Show current branch name in merge success message --- src/commands/helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/helpers.ts b/src/commands/helpers.ts index 0172329..6270ea8 100644 --- a/src/commands/helpers.ts +++ b/src/commands/helpers.ts @@ -115,7 +115,7 @@ export async function mergeAndClose(branch: string, opts?: { squash?: boolean; f spin.text = "Generating commit message" await squashCommit(branch, root) } - spin.succeed(`${label} ${branch} into current branch`) + spin.succeed(`${label} ${branch} into ${current}`) if (session) await teardownSession(root, branch, session.worktree) await git.deleteLocalBranch(branch, root).catch(() => {}) return