We are working on an app and use Github to hold and version our code.
Currently, we are 2 people each working on a seprate repo (RepoA and RepoB).
We decided that it would be best if we had 1 master repo to hold the complete app, but we also want to continue working on our separate repos on our own. I followed this tutorial to merge both our repos into a new master repo (RepoC).
Everything worked perfectly but now we have the issue where changes to RepoA or RepoB don't reflect in RepoC and vice-versa.
So I was wondering... Is there any way, that we can tell RepoC to "track" RepoA and RepoB for changes, and sync with them when needed.
If the above is not possible, is there atleast a way where we can contribute to our own repos and then do something like "git fetch RepoA, git fetch RepoB" on our master RepoC so that it can reflect the changes we've made.