在尝试从Github拉取项目时遇到问题:The current branch is not configured for pull,提示找不到branch.master.merge配置。StackOverflow上的建议通常涉及命令行解决,但也可以在Eclipse中通过可视化界面操作修复:进入Window->Preference->Team->Git->Configuration,找到Repository Settings,粘贴缺少的[remote "origin"]和[branch "master"]配置,之后即可正常更新。
今天从Github 上pull 项目的时候遇到了一个问题:
The current branch is not configured for pull No value for key branch.master.merge found in configuration.
没办法同步工程了,网上查了下,多数是命令解决。如下为stackoverflow上的解决方案
Your local master branch is not set up to track remote master branch.
You could do git pull origin master to tell git the explicit branch you want to pull or you add this to your .git/config: