eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found in configuration
如图:
这是因为 在用gui创建分支的时候 config文件没有创建branch
在config文件加上
[branch "xxx"]
remote = origin
merge = refs/heads/xxx
即可
本文介绍了解决 Eclipse Git 中遇到的错误提示“thecurrentbranchisnotconfiguredforpull”的方法。当使用 GUI 创建分支时,可能会遗漏 config 文件中 branch 的配置,导致无法从远程仓库拉取更改。通过在 config 文件中手动添加对应分支的远程和合并配置,可以解决此问题。
eclipse git 报错:the current branch is not configured for pull No value for key branch.xxx.merge found in configuration
如图:
这是因为 在用gui创建分支的时候 config文件没有创建branch
在config文件加上
[branch "xxx"]
remote = origin
merge = refs/heads/xxx
即可

被折叠的 条评论
为什么被折叠?