Git Notes on Combining Repositories
Just some notes. Recently, I had to merge and organize 3 repositories as one, so here are the things I ended up doing. Merging 2 repositories in to one with full history In my case, the local repository (source) was project-a, and the public repository (destination) was project-b. When I was finished merging, instead of git push -u I had to push it like so: (where master was the branch I was targeting)...