Repository A: migrated to git from a project's SVN at revision r: cloned the whole thing including all of SVN's history, tags, etc. A little development on git afterwards.
Repository B: the same project, but independently migrated from SVN at revision r+small_number. Only the latest snapshot was brought into git. Lots of independent development afterwards.
Now I merged A into B. The idea is that SVN will be discarded, development will continue in the develop branch of the project's repo on GitHub. I used simple merge to do the job; thankfully there were very few real conflicts. The development was mostly in different areas, though there was a lot of cleaning up after the merge, unrelated to git.
But: now when I do e.g. git rebase -i HEAD~2 on the merged result, which I understand should let me rebase the last two commits, I am greeted with a page of some 300+ commits -- the complete history of the project since revision 1 in SVN. I aborted the rebase for fear of messing up even more (obviously I'm a complete Git novice).
Is that outcome expected? Is it desirable? If not, how to fix it?
Note that all unit tests etc. pass, the files themselves are ok, only I don't understand what happened to git metadata/history.
EDIT: this is what I *think* the repository looks like now:
r A
... o --- o --- ... o
\
B \
o --- .... o ---- o --- ... o
r+small_number C HEAD