The current branch is not configured for pull No value for key branch.dev.merge
程序员文章站
2022-05-11 17:25:29
...
eclipse git pull 时报错:
The current branch is not configured for pull
No value for key branch.dev.merge found in configuration
解决方法:
在eclipse如下操作:
windows->preferences->team->git->configuration->repository Settings
[img]
[/img]
打开文件后添加如下代码:
如下图所示:
图中红色区域的分支名称替换 你们自己分支的名字,我的分支名是“dev”
如果有多个分支,需要添加多段代码,否则,不添加的分支还是无法pull。
经过如上操作,可以解决此问题。
The current branch is not configured for pull
No value for key branch.dev.merge found in configuration
解决方法:
在eclipse如下操作:
windows->preferences->team->git->configuration->repository Settings
[img]
[/img]
打开文件后添加如下代码:
[branch "dev"] remote = origin merge = refs/heads/dev
如下图所示:
图中红色区域的分支名称替换 你们自己分支的名字,我的分支名是“dev”
如果有多个分支,需要添加多段代码,否则,不添加的分支还是无法pull。
[branch "dev1"] remote = origin merge = refs/heads/dev1 [branch "dev2"] remote = origin merge = refs/heads/dev2
经过如上操作,可以解决此问题。
上一篇: 拒绝AI威胁论炒作!盘点AI无法替代人类的10件事
下一篇: Nova v3 API如何添加新资源