I've got a git repo, let's say "projectroot". Now I want to merge from an upstream remote. I want to merge this content into a specific directory of my "projectroot". For instance, into "projectroot/html".
How can I do this? If I just do git merge upstream/branchname it will merge it into the "projectroot" directory. But it has to go in "projectroot/html".
It's important to keep the "projectroot" as my git repo.
Kind regards