Resolve local and remote develop branch conflicts after move from Bitbucket to Github #161
bbercoviciUspace
started this conversation in
General
Replies: 1 comment 3 replies
-
It appears that the commit IDs were not preserved across the move from Bitbucket to Github. I tried to remove the commit from Jan 2 from my local branch so that the new develop branch strictly included the local commits, but since their IDs are different this is obviously not going to work. This is quite impactful, because custom branches that were once checked out from develop and periodically rebased or merged against it can no longer be. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I realized that I had not changed the remote url of the
develop
branch until this morning. Doing so and runninggit pull
ondevelop
has generated thousands of conflicts, to the point where my localdevelop
branch and the remote one differ quite a bitIf I am reading this right, git is treating the two branches as completely different. The last commit on my local
develop
iswhich is consistent with the state of the bitbucket repo. But this commit doesn't show on the Github commit history. The last commit that the two have in common is
514adef66b57da4d1f06414b491b898c320c6c82
from 2022-12-14.Could it be that because
69d6c81f3b7aff7c6d4d04f65454f98a6cc540b5
was pushed to bitbucket after the move to Github, I can no longer reconcile my local develop branch and the remote one ?Beta Was this translation helpful? Give feedback.
All reactions