您的位置:首页 > 产品设计 > UI/UE

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

2014-02-23 10:27 866 查看
刚开始接触git,给eclipse安装了git插件,项目出了点问题重检了一下,pull时出现了问题:The current branch is not configured for pull No value for key branch.master.merge found in configur,在stackoverflow上找到了解决方法:

To fix this problem in Eclipse, open the Windows menu and select Show
View / Other / Git Repositories
.

From the Git Repositories tab:

expand your local repository

right click on Remote

click on Create Remote...

Remote name = origin

next to IRI press the Change button

CTRL+SPACE on URI

select the remote location

press Finish

press Save and Push

Again, from the Git Repositories tab:

right click on origin

select Configure Fetch...

on Ref mapping press the Edit (Advanced)...

press Add All Branches Spec

select the Force Update checkbox

press Finish

Again, from the Git Repositories tab:

right click on your local repository

select Properties

press Add Entry...

enter the following two keys:

(1)
Key = branch.master.remote
Value = origin


(2)
Key = branch.master.merge
Value = refs/heads/master

完了就可以pull了,如果失败了,可能是这个解决方法有局限性,因为刚开始对git的了解不多;也可能是操作有误。

原文地址:http://stackoverflow.com/questions/8820668/the-current-branch-is-not-configured-for-pull-no-value-for-key-branch-master-mer
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  git