I know the GitHub Flow is a good Git workflow that simplified the Git workflow. However, there is one case that it doesn't cover -- How to merge two different git repos from different users. Can the GitHub Flow be of any help, or I have to revert to something completely on command line?
I.e., the GitHub Flow has the assumption that people would cooperate with each other. My question is, what if they don't, what should I do to merge the two or more repos in this case. The repos I'm talking about are:
https://github.com/jasonparekh/go-imap and
https://github.com/dinhviethoa/go-imap/
From https://github.com/jasonparekh/go-imap/network, we can see that they are on different branches, and even on different bases. I.e., there are many many separate forks of the github go-imap project. None of these repositories have been merged back into the original go-imap repository. Regardless what the reasons are behind the situation, I'm trying to pull all those efforts together into a single repository, so that mine will contains all useful patches
How to merge the two or more repos in this case? What if I need to merge in another repos from the above network graph?