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

后端 未结 17 1076
太阳男子
太阳男子 2020-11-30 16:44

I get this error when I try to pull from remote repository using Egit team>pull

The current branch is not configured for pull No value for key branc

17条回答
  •  心在旅途
    2020-11-30 16:49

    I also had problems to configure it. It is working now so I'm going to share my configuration file. I think it will help:

    [core]
        repositoryformatversion = 0
        filemode = false
        logallrefupdates = true
    
        [branch "master"] 
            remote = origin 
            merge = refs/heads/master 
        [remote "origin"] 
            url = https://github.com/chelder86/ArcadeTongame.git
            fetch = +refs/heads/*:refs/remotes/origin/*
    

    Note: https://github.com/chelder86/ArcadeTongame.git should be replaced with your own HTTPS clone URL.

提交回复
热议问题