We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de7c18c commit c025bcdCopy full SHA for c025bcd
1 file changed
src/commands/push.ts
@@ -80,7 +80,9 @@ export function registerPushCommand(program: Command, getCtx: () => ArbContext):
80
const headStr = a.headSha ? ` ${dim(`(HEAD ${a.headSha})`)}` : "";
81
if (a.outcome === "will-push") {
82
const newBranchSuffix = a.recreate ? " (recreate)" : a.newBranch ? " (new branch)" : "";
83
- process.stderr.write(` ${a.repo} ${plural(a.ahead, "commit")} to push${newBranchSuffix}${forkSuffix}${headStr}\n`);
+ process.stderr.write(
84
+ ` ${a.repo} ${plural(a.ahead, "commit")} to push${newBranchSuffix}${forkSuffix}${headStr}\n`,
85
+ );
86
} else if (a.outcome === "will-force-push") {
87
process.stderr.write(
88
` ${a.repo} ${plural(a.ahead, "commit")} to push (force — ${a.behind} behind ${a.publishRemote})${headStr}\n`,
0 commit comments