In a few days, I must make one complex commit, I'll try to explain in details:
We're using GIT (after migrating from svn) and have 3 work branches:
- trunk - branch for immediate changes/fixes, developer's playground, etc
- preproduction - branch, where all of the features for client testing goes
- production - the name says it all, working branch of the product
So usually developers go such sequence:
new ticket -> local copy -> trunk -> preproduction -> production
pretty standard, I guess.
Now, to the question itself: In the trunk we have one completed hell of a task (1000+ hours), that was there before the migration from svn, so it's not git-branched, or anything like that, it's just a bunch of commits. We need to merge that task onto preproduction and then production branches accordingly.
I can't quite sure what will be the most painless way of doing it. I'm not even sure branches have common ancestor commit after migration.
Is there a common way that problem could be solved? Maybe I can group commits, related to this task into branch followed by merging this branch with the pre and production?
Any advices greatly appreciated.
