Git从本地分支推送到远程跟踪分支
我有一个主分支并从它分支到构建分支。
我将此存储库克隆到另一台机器上。 我创建了一个分支 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 git pull 的 refspec 格式
have a look at the refspec format of git pull