diff --git a/src/commands/commit.ts b/src/commands/commit.ts index c9ed773..eccd9b3 100644 --- a/src/commands/commit.ts +++ b/src/commands/commit.ts @@ -44,8 +44,9 @@ ${chalk.grey('——————————————————')}` }); if (isCommitConfirmedByUser && !isCancel(isCommitConfirmedByUser)) { - await execa('git', ['commit', '-m', commitMessage]); + const { stdout } = await execa('git', ['commit', '-m', commitMessage]); outro(`${chalk.green('✔')} successfully committed`); + outro(stdout); } else outro(`${chalk.gray('✖')} process cancelled`); };