I have two git repositories, like this:
- proj1
- proj2
proj1 has a tag v1.0.0 and proj2 has tags v2.0.0 and v2.1.0. Now I would like to merge proj1 (the v1.0.0 tag in particular) into proj2 as if it was an earlier version of proj2, so that I have the tags v1.0.0, v2.0.0 and v2.1.0. I'm also fine if I have to merge proj2 into proj1 or merge both into a new repository, as long as I get all the tags and the combined history.
There is a lot of people asking similar questions, like the following, but none seem to have my particular problem - adding two repositories as different versions. http://stackoverflow.com/questions/2233933/merging-two-git-repositories
Is that possible?