I have two unrelated (not sharing any ancestor check in) Git repositories, one is a super repository which consists a number of smaller projects (Lets call it repository A).
I think you do it like this:
Hope this is useful for you.
Br, Tim
I did something similar (merge history from B into A) like this:
git fetch <ref to your repo B> master:new-branch-on-A (so, you have copied master branch of B into a new branch 'new-branch-on-A' into your repo A.git checkout new-branch-on-Agit rebase master (you rebase the new-branch-on-A with the master branch) git checkout mastergit merge new-branch-on-Agit branch -d new-branch-on-Agit rebase -i is your friend if needed).