문제

Whenever I start pulling from eclipse git repositories I get alert box stating that the current branch is not configured for pull. No value for remote.gerrit.url found in configuration.

How can I fix it?

도움이 되었습니까?

해결책

From these lines in the config, your master branch is configured to fetch the gerrit remote on pull:

[branch "master"]
    remote = gerrit
    merge = refs/heads/master

You need to either add url to the [remote "gerrit"] section or change the remote value above to origin.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top