In the output from git remote show origin, I see this message: warning: more than one branch.main_int.remote

What does this mean? Is it bad, and how do I fix it, if it is bad? Thanks.

link|improve this question

43% accept rate
feedback

1 Answer

up vote 2 down vote accepted

In your .git/config file there's more than one remote = ... line in the [branch "main_int"] section. Delete one of the lines.

That configuration line stores the name of the branch's upstream repository, which is used when you type git push or git fetch. A branch can only have one upstream branch (e.g., master can follow origin/master but it can't also follow some_other_remote/master).

link|improve this answer
Thank-you! I am so relieved! – user561638 Jul 12 '11 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.