码迷,mamicode.com
首页 > 编程语言 > 详细

【JAVA】Eclipse中使用git进行pull远程代码

时间:2017-09-03 20:17:31      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:pull   class   idp   red   修改   roi   错误代码   知识   tool   

当使用eclipse或者MyEclipse进行pull远程代码的时候,或者github的代码的时候报如下错误代码;

代表我们没有配置我们的Git地址,这里我教大家配置一下。首先下面是错误代码:

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

 

 
  • 1

解决方法:

  1. 在我们本地工程目录找到config文件(如我的是E:\david\xiaobing.git);

  2. 修改config文件内容为:

[core]
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true
    [branch "master"] 
        remote = origin 
        merge = refs/heads/master 
    [remote "origin"] 
        url = https://github.com/QQ986945193/DavidAndroidProjectTools.git
                (修改为自己的url,然后去掉此括号中的内容即可)
        fetch = +refs/heads/*:refs/remotes/origin/*

 

  • 1
  • 2
  1. 最后再执行pull方法,发现工作ok了

【JAVA】Eclipse中使用git进行pull远程代码

标签:pull   class   idp   red   修改   roi   错误代码   知识   tool   

原文地址:http://www.cnblogs.com/qlqwjy/p/7470573.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!