I'm trying to pull from a remote into a folder in my repo. When using:
git subtree pull --prefix my-local/folder my-remote master
I'm getting the following error:
fatal: refusing to merge unrelated histories
I read in an other post that I can use the option --allow-unrelated-histories
but when I do I get error: unknown option --allow-unrelated-histories
(I put the option last)
I'm using git version 2.10.1 and Windows 10
Any help or ideas on how to move forward with this is greatly appreciated!