Pergunta

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?

Foi útil?

Solução

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.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top