Przeglądaj źródła

Fixes pushing to a remote branch w/ different name

main
Eric Amodio 1 rok temu
rodzic
commit
93aecab6d2
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/env/node/git/git.ts

+ 1
- 1
src/env/node/git/git.ts Wyświetl plik

@ -907,7 +907,7 @@ export class Git {
if (options.branch && options.remote) {
if (options.upstream) {
params.push('-u', options.remote, `${options.upstream}:${options.branch}`);
params.push('-u', options.remote, `${options.branch}:${options.upstream}`);
} else if (options.publish) {
params.push('--set-upstream', options.remote, options.branch);
} else {

Ładowanie…
Anuluj
Zapisz