I have a Git project that was copied from another git project. It was just a file copy and commit, so it didn't copy history. I've since imported the commits from the previous files, but they aren't connected to the new versions of the file. So if I look for the history of a file that exists in both repos, history only goes to the time I copied the project across.
I tried checking out the last revision of the old project, and git merging the first revision of the new project. Then I merged to master. This makes the project's git history look right, but each individual's file history is unchanged.
It's almost like we want to delete the revision that says "create all these files" and instead prepend the old project's history.
Is this possible with Git?