Ver a proveniência

Uses default remote for deep links when configured

main
Ramin Tadayon há 1 ano
ascendente
cometimento
6d79813dde
Não foi encontrada uma chave conhecida para esta assinatura, na base de dados ID da chave GPG: 79D60DDE3DFB95F5
1 ficheiros alterados com 3 adições e 0 eliminações
  1. +3
    -0
      src/commands/copyDeepLink.ts

+ 3
- 0
src/commands/copyDeepLink.ts Ver ficheiro

@ -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)}`,

Carregando…
Cancelar
Guardar