소스 검색

Fixes push confirm message when not ahead

main
Eric Amodio 4 년 전
부모
커밋
48738a1b83
1개의 변경된 파일10개의 추가작업 그리고 1개의 파일을 삭제
  1. +10
    -1
      src/commands/git/push.ts

+ 10
- 1
src/commands/git/push.ts 파일 보기

@ -302,7 +302,7 @@ export class PushGitCommand extends QuickCommand {
undefined,
{ placeholder: 'Confirm Publish' },
);
} else {
} else if (status.upstream == null) {
step = this.createConfirmStep(
appendReposToTitle('Confirm Publish', state, context),
[],
@ -312,6 +312,15 @@ export class PushGitCommand extends QuickCommand {
}),
{ placeholder: 'Confirm Publish' },
);
} else {
step = this.createConfirmStep(
appendReposToTitle('Confirm Push', state, context),
[],
DirectiveQuickPickItem.create(Directive.Cancel, true, {
label: `Cancel ${this.title}`,
detail: `Cannot push; No commits ahead of ${GitBranch.getRemote(status.upstream)}`,
}),
);
}
} else {
let lastFetchedOn = '';

불러오는 중...
취소
저장