gpt4 book ai didi

git - 从本地分支推送到不同的远程分支

转载 作者:太空狗 更新时间:2023-10-29 14:38:01 32 4
gpt4 key购买 nike

我在远程有 2 个名为 developerCurrent 的分支。在本地,我在分支 developer 上工作,并将我的更改推送到远程 developer。问题是,如何从本地 developer 推送到远程 Current

我试过这些:

git push origin Current -f
// error:
// src refspec Current does not match any.
// failed to push some refs to ...

// and this one too:
git config push.default upstream
git push origin Current -f
// error: same as the first try

// and this one too:
git branch --set-upstream-to developer origin/Current
// or:
git branch --set-upstream-to developer Current
// error: fatal: branch 'Current' (or 'origin/Current') does not exist

最佳答案

你可以这样做:

git push origin developer:current

这会将分支 developer 从您的本地仓库推送到远程仓库上的分支 current 。如果您要覆盖当前分支上的更改,您还需要使用 -f 标志。

FWIW,执行 git push origin :current(注意 current 之前的 :)将删除分支 current 来自 Remote 。

关于git - 从本地分支推送到不同的远程分支,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28300580/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com