I want to move a project into git that consists of a bunch of code supplied by a vendor, with some customizations on top of that code (added files and modified files).
I have a vendor
branch that has all the code, and I store just the customizations in master
. Now I'm looking at how to pull all that code down to construct the whole project by adding both vendor
and master
as remotes but git fetch --all
doesn't seem to do it...it skipped any folders that were not in master
.
Am I going about this the wrong way? Is this not possible?