I have a long going git project which havn't had commits for long time. Then a new developer got a checkout and created a new git init with those files, and start committing stuff.
How is it possible to merge and keep his commit log into the original repository?
It seems a bit hard when it does not share any commit.
I have tried to add the new project into a new remote branch, and then merge and rebase, but no log. It does gives conflicts because files are added in the init commit of the new project.
Update:
So it kind of works, if I take cherry pick commits other that the new initial commits. However, the initial commit was done directly on prod server, which might have changes for the old repo version. So I need to create a commit first with those changes.