History of subtree merged files
I wanted to merge a folder from one repository to another according to the subtree merge method (according to How do you merge two Git repositories? and http://nuclearsquid.com/writings/subtree-merging-and-you/ ) Now I'm confused since the files I added seem to have forgotten their history: git log -p oneMergedFile gives me a diff looking as if the file was newly added, while git log gives me the full history, i.e. containing the history of the merged branch. How can I get the entire history for oneMergedFile ? -p oneMergedFile only shows the changes made to that file. Perhaps it wasn't part