在eclipse中使用git的pull功能时报错解决办法


打开项目的 .git/config文件,参照以下进行编辑

[core]
    symlinks = false
    repositoryformatversion = 0
    filemode = false
    logallrefupdates = true
    [branch "master"]
        remote = origin
        merge = refs/heads/master
    [remote "origin"] 
        url = https://github.com/用户名/项目名.git(即项目的git路径)
        fetch = +refs/heads/*:refs/remotes/origin/*
        push = +refs/heads/master:refs/heads/master

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM