|
@ -223,14 +223,20 @@ export class RebaseGitCommand extends QuickCommand { |
|
|
const count = aheadBehind != null ? aheadBehind.ahead + aheadBehind.behind : 0; |
|
|
const count = aheadBehind != null ? aheadBehind.ahead + aheadBehind.behind : 0; |
|
|
if (count === 0) { |
|
|
if (count === 0) { |
|
|
const step: QuickPickStep<DirectiveQuickPickItem> = this.createConfirmStep( |
|
|
const step: QuickPickStep<DirectiveQuickPickItem> = this.createConfirmStep( |
|
|
appendReposToTitle(`Confirm ${context.title}`, state, context), |
|
|
|
|
|
|
|
|
appendReposToTitle(context.title, state, context), |
|
|
[], |
|
|
[], |
|
|
createDirectiveQuickPickItem(Directive.Cancel, true, { |
|
|
createDirectiveQuickPickItem(Directive.Cancel, true, { |
|
|
label: `Cancel ${this.title}`, |
|
|
|
|
|
|
|
|
label: 'OK', |
|
|
detail: `${getReferenceLabel(context.destination, { |
|
|
detail: `${getReferenceLabel(context.destination, { |
|
|
capitalize: true, |
|
|
capitalize: true, |
|
|
})} is up to date with ${getReferenceLabel(state.reference)}`,
|
|
|
|
|
|
|
|
|
})} is already up to date with ${getReferenceLabel(state.reference)}`,
|
|
|
}), |
|
|
}), |
|
|
|
|
|
{ |
|
|
|
|
|
placeholder: `Nothing to rebase; ${getReferenceLabel(context.destination, { |
|
|
|
|
|
label: false, |
|
|
|
|
|
icon: false, |
|
|
|
|
|
})} is already up to date`,
|
|
|
|
|
|
}, |
|
|
); |
|
|
); |
|
|
const selection: StepSelection<typeof step> = yield step; |
|
|
const selection: StepSelection<typeof step> = yield step; |
|
|
canPickStepContinue(step, state, selection); |
|
|
canPickStepContinue(step, state, selection); |
|
|