-
-
Notifications
You must be signed in to change notification settings - Fork 139
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merging branches afer migration #21
Comments
I've encountered the same problem. Still investigating the issue. |
Hi, I've encountered the same problem. Thanks, |
I have the same issue. Did any of you have some luck with a workaround? |
Yes, have a look at git subtree and specially -X option ;-) I have used tomono to create the monorepo for all develop branches and then use subtree merge to recreate old feature, release, hotfix, ... branchs on the new monorepo : And it worked ! If you used tomono to create more than one branch, you won't be able to merge them in the future |
We're running into the same issue with no clear fix. For instance, we have our |
I had a look at this but I can't easily reproduce it. Do you have an example? Here is a sample test script that seems to work OK: |
Hi,
Thanks for the script, it works as expected. Had some issues with slashes in the branch names, but you guys fixed them in the mean time.
We've been using git flow in all our individual repos until now. After running the migration script, as expected we have master, develop, and a few feature/X branches. The problem comes when trying to finish one of the features (merge it do develop). Git seems to be very confused and throws a lot of conflicts. Some concrete examples include:
Trying to perform the same merge in the original repository shows no conflict. Based on my understanding, this issue arises because read-tree shows as an independent copy on each individual branch (develop and feature/f1).
Did anybody encounter this issue? Any recommendations?
Thanks,
Calin
The text was updated successfully, but these errors were encountered: