码迷,mamicode.com
首页 > 系统相关 > 详细

Eclipse git pull 报Nothing to fetch 异常原因

时间:2014-12-04 17:18:50      阅读:435      评论:0      收藏:0      [点我收藏+]

标签:style   http   io   color   os   使用   sp   for   on   

eclipse git pull 报错
// 使用这个配置会有 org.eclipse.jgit.api.errors.TransportException: Nothing to fetch. 异常
[core]
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true
[branch "master"]
        remote = origin
        merge = refs/heads/master
[remote "origin"]
        url = https://code.jd.com/tree_new_bee/MySinaWeiboApp.git
        fetch = +refs/heads/*:refs/remotes/origin/*

//问题解决:
// 使用这个配置就可以正常pull了       
[core]
        symlinks = false//增加了这一样,具体为什么还不知道,对这些参数也不了解, 希望有了解的朋友分享下。
        repositoryformatversion = 0
        filemode = false
        logallrefupdates = true
[branch "master"]
        remote = origin
        merge = refs/heads/master
[remote "origin"]
        url = https://code.jd.com/tree_new_bee/MySinaWeiboApp.git
        fetch = +refs/heads/*:refs/remotes/origin/*  

Eclipse git pull 报Nothing to fetch 异常原因

标签:style   http   io   color   os   使用   sp   for   on   

原文地址:http://www.cnblogs.com/treenewbee/p/4143135.html

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