소스 검색

Uses default remote for deep links when configured

main
Ramin Tadayon 1 년 전
부모
커밋
6d79813dde
No known key found for this signature in database GPG 키 ID: 79D60DDE3DFB95F5
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      src/commands/copyDeepLink.ts

+ 3
- 0
src/commands/copyDeepLink.ts 파일 보기

@ -106,8 +106,11 @@ export class CopyDeepLinkCommand extends ActiveEditorCommand {
try {
let chosenRemote;
const remotes = await this.container.git.getRemotes(repoPath, { sort: true });
const defaultRemote = remotes.find(r => r.default);
if (args.remote && !args.prePickRemote) {
chosenRemote = remotes.find(r => r.name === args?.remote);
} else if (defaultRemote != null) {
chosenRemote = defaultRemote;
} else {
const pick = await showRemotePicker(
`Copy Link to ${deepLinkTypeToString(type)}`,

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