--allow-unrelated-histories failed #426
-
I've been working on a yoda repo from three machines, and had some childproject installation issues in one of them a couple of weeks ago. I now fixed that but when I try
A google search for this error returns nothing. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
this cryptic message means that the local version and the version that we are trying to pull from have diverged in ways that cannot be automatically resolved. When I run
followed by a list of not-offending changes in green, and a list of offending changes in red. The solution is to deal with each of the offending issues and then run |
Beta Was this translation helpful? Give feedback.
this cryptic message means that the local version and the version that we are trying to pull from have diverged in ways that cannot be automatically resolved. When I run
git status
I get a list of things that are problematic, as follows:followed by a list of not-offending changes in green, and a list of offending changes in red.
The solution is to deal with each of the offending issues and then run
git commit
…