Question

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?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top