We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72ee61d commit 991e248Copy full SHA for 991e248
src/commands/git/rebase.ts
@@ -150,7 +150,7 @@ export class RebaseGitCommand extends QuickCommand<State> {
150
});
151
152
const result: StepResult<GitReference> = yield* pickBranchOrTagStep(state as RebaseStepState, context, {
153
- placeholder: context => `Choose a branch${context.showTags ? ' or tag' : ''} to rebase`,
+ placeholder: context => `Choose a branch${context.showTags ? ' or tag' : ''} to rebase onto`,
154
picked: context.selectedBranchOrTag?.ref,
155
value: context.selectedBranchOrTag == null ? state.destination?.ref : undefined,
156
additionalButtons: [pickCommitToggle],
0 commit comments