Procházet zdrojové kódy

Fixes issue with fetching non-current branches

main
Eric Amodio před 1 rokem
rodič
revize
88c2e981a8
1 změnil soubory, kde provedl 1 přidání a 6 odebrání
  1. +1
    -6
      src/env/node/git/git.ts

+ 1
- 6
src/env/node/git/git.ts Zobrazit soubor

@ -870,12 +870,7 @@ export class Git {
if (options.upstream && options.pull) {
params.push('-u', options.remote, `${options.upstream}:${options.branch}`);
} else {
params.push(
options.remote,
options.upstream
? `${options.upstream}:refs/remotes/${options.remote}/${options.branch}`
: options.branch,
);
params.push(options.remote, options.upstream || options.branch);
}
} else if (options.remote) {
params.push(options.remote);

Načítá se…
Zrušit
Uložit