我在github上有一个项目(上游)的分叉(起源)。现在上游项目已经添加了一个新的分支,我想导入到我的分叉。我怎么做呢?
我试着检查远程并在上面创建一个分支,但这配置分支的方式是git push试图推到上游:
git checkout upstream/branch
git checkout -b branch
edit
也许这不是很清楚,但是我想把分支添加到我的本地存储库中,这样我就可以通过git push将它推到原点(我的fork)。因为上游存储库通常是只读的,您可以对其进行分叉。
因此,我基本上想签出一个不存在的分支在原点,其内容将从上游拉入。
我有一个稍微复杂一点的场景,我已经在我的fork中定义了一个上游(来自canonical repo),但需要从不同的fork签出一个分支。要做到这一点,过程略有不同。下面是我最终得到的配置:
[remote "origin"]
url = git@github.com:<your_user/org>/<repo>.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
rebase = true
[remote "upstream"]
url = git@github.com:<upstream_user>/<repo>.git
fetch = +refs/heads/*:refs/remotes/upstream/*
[remote "other_user"]
url = git@github.com:<other_user>/<repo>.git
fetch = +refs/heads/*:refs/remotes/<other_user>/*
现在您还可以从<other_user> fork签出一个分支。
git fetch <other_user> <branch>
git checkout -b <branch> <other_user>/<branch>
这将为您提供一个派生自<other_user> fork的本地分支。
为了推动本地分支,我必须明确我的push命令。
git push origin <branch>