Git从本地分支推送到远程跟踪分支

发布于 2024-11-18 04:18:59 字数 467 浏览 1 评论 0原文

我有一个主分支并从它分支到构建分支。

我将此存储库克隆到另一台机器上。 我创建了一个分支 my_build 来跟踪远程构建分支。 现在我在 my_build 分支中进行了一些提交。 我想将这些更改推送到远程构建分支。

我尝试从我的远程构建分支中拉出并且它起作用了。

但是有没有一种方法可以将 my_build 分支中的提交推送到 Remotes 构建分支?

我有一个主控和两个分支,分支 A 和分支 B 在同一点从主控分支。

我在分支 A,我想将我的提交推送到分支 B 我该怎么做?


我有一个主服务器和一个分支 A。

将其克隆到另一台机器上。

创建了另一个分支 B 在 B 中进行了一些提交。B 不跟踪 A。现在我如何将我的更改从 B 推送到 A。

我如何将 A 的更改拉到我的分支 B。

并且我所有上述情况都是我的主控和所有存储库是非裸回购。

I have a master branch and branched out from it to a build branch.

I cloned this repository to a different machine.
I created a branch my_build to track the remote build branch.
Now i have few commits made in my_build branch.
I want to push these changes to Remote build branch.

I tried pulling from my Remote build branch and it worked.

But is there a way that i can push my commits in my_build branch to Remotes build branch?

I have a master and two branches Branch A and Branch B branched from master at the same point.

I am in Branch A and i want to push my commits to Branch B How can i do this?


I have a master and a branch A.

Cloned this to another machine.

Created another branch B made some commits in B. B is not tracking A. Now how can i push my changes from B to A.

How can i pull A's Changes to my branch B.

And i all the above cases my master and all repos are non-bare Repos.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2024-11-25 04:18:59

查看 git pull 的 refspec 格式

git push origin branch_from:branch_to

have a look at the refspec format of git pull

git push origin branch_from:branch_to
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文