Github - 当前分支未配置为pull在配置中找到的key branch.master.merge没有值

时间:2014-01-15 08:44:40

标签: eclipse github

当我从github拉回这个回购时,我收到了这个错误。 - https://github.com/datomnurdin/worklight-mobile

错误消息

The current branch is not configured for pull 
No value for key branch.master.merge found in configuration

1 个答案:

答案 0 :(得分:6)

你还没有告诉Git哪个远程分支合并到你当前的分支。假设您在一个名为feature的分支上,并且想要从origin/feature开始。

运行

git branch -u origin/feature feature

origin/feature设置为您本地feature分支的“上游分支”。

在您的.git/config中,您现在应该看到类似的内容(请注意merge行):

[branch "feature"]
        remote = origin
        merge = refs/heads/feature

现在您应该可以自动pull