Quellcode durchsuchen

Fixes issue with fetching non-current branches

main
Eric Amodio vor 1 Jahr
Ursprung
Commit
88c2e981a8
1 geänderte Dateien mit 1 neuen und 6 gelöschten Zeilen
  1. +1
    -6
      src/env/node/git/git.ts

+ 1
- 6
src/env/node/git/git.ts Datei anzeigen

@ -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);

Laden…
Abbrechen
Speichern