Skip to content

Commit

Permalink
fix merge conflict advice for bit checkout (#8203)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjgil authored Nov 29, 2023
1 parent 34f0779 commit 6609392
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scopes/component/checkout/checkout.main.runtime.ts
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export class CheckoutMain {
if (componentWithConflict) {
if (!promptMergeOptions && !checkoutProps.mergeStrategy) {
throw new GeneralError(
`automatic merge has failed for component ${componentWithConflict.id.toStringWithoutVersion()}.\nplease use "--manual" to manually merge changes or use "--theirs / --ours" to choose one of the conflicted versions`
`automatic merge has failed for component ${componentWithConflict.id.toStringWithoutVersion()}.\nplease use "--auto-merge-resolve" with 'manual', 'ours' or 'theirs' to resolve the conflict/s`
);
}
if (!checkoutProps.mergeStrategy) checkoutProps.mergeStrategy = await getMergeStrategyInteractive();
Expand Down

0 comments on commit 6609392

Please sign in to comment.