我已经分叉了一个私人仓库(称为X)。现在在repo X中创建了一个分支。如何让repo X中的分支出现在我的repo X的分支中?
实施例
我想在我的分支中设置该分支,以便我可以处理它并将该分支的拉取请求发送到原始仓库。
由于
Saad的
答案 0 :(得分:1)
假设您有一个名为“origin”的私人仓库的远程设置,您可以执行以下操作:
git fetch origin # fetches history from origin repo
git checkout -b newBranch origin/newBranch # create a local branch called 'newBranch' that tracks origin's newBranch