浏览代码

Fixes pushing to a remote branch w/ different name

main
Eric Amodio 1年前
父节点
当前提交
93aecab6d2
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/env/node/git/git.ts

+ 1
- 1
src/env/node/git/git.ts 查看文件

@ -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 {

正在加载...
取消
保存