Hi,
I have the remotes Foo and Bar. Foo is a web application that has lots of directories, relevent amongst them is /public
which cointains assorted files and other directories.
Bar is a set of libraries and whatnot used on the front end, as such, it should go in /public/bar
in Foo. Foo has no files there.
That would all be piece of cake with either submodules or subtree merge. However…
Bar's tree is messy, it has all sorts of pre-production files like PSDs and FLAs, and the only really useful part of it is what is inside its /www/tools
.
So, what I want to do is merge Bar's /www/tools
into Foo's /public/bar
, and pretend the rest of Bar's tree doesn't even exist.
Can do?
(I would suppose this is very similar to how you merge from a project that originally merged yours as a subtree. Which I don't know how to do, either.)