Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 17 additions & 14 deletions src/commands/commit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,26 +148,29 @@ ${chalk.grey('——————————————————')}`
process.exit(0);
}
} else {
const skipOption = `don't push`
const selectedRemote = (await select({
message: 'Choose a remote to push to',
options: remotes.map((remote) => ({ value: remote, label: remote }))
options: [...remotes, skipOption].map((remote) => ({ value: remote, label: remote })),
})) as string;

if (isCancel(selectedRemote)) process.exit(1);

const pushSpinner = spinner();

pushSpinner.start(`Running 'git push ${selectedRemote}'`);

const { stdout } = await execa('git', ['push', selectedRemote]);

if (stdout) outro(stdout);

pushSpinner.stop(
`${chalk.green(
'✔'
)} successfully pushed all commits to ${selectedRemote}`
);
if (selectedRemote !== skipOption) {
const pushSpinner = spinner();

pushSpinner.start(`Running 'git push ${selectedRemote}'`);

const { stdout } = await execa('git', ['push', selectedRemote]);

if (stdout) outro(stdout);

pushSpinner.stop(
`${chalk.green(
'✔'
)} successfully pushed all commits to ${selectedRemote}`
);
}
}
} else {
const regenerateMessage = await confirm({
Expand Down