Make an existing Git branch track a remote branch?

前端 未结 22 2953
执念已碎
执念已碎 2020-11-21 07:16

I know how to make a new branch that tracks remote branches, but how do I make an existing branch track a remote branch?

I know I can just edit the

22条回答
  •  既然无缘
    2020-11-21 08:14

    For 1.6.x, it can be done using the git_remote_branch tool:

    grb track foo upstream
    

    That will cause Git to make foo track upstream/foo.

提交回复
热议问题