I have a rather unique situation:
- I have a repository called Project1 that I worked on for a few months.
- A year later, I created the repository Project1_Again that took off where Project1 left off.
- Now, I would like the revision history to be continuous, so I would like them merged together, as if that new repository had never been created.
Is this possible?
To clarify:
Repo: Project1
- rev1: main.cpp has contents "h"
- rev2: main.cpp has contents "hello"
- rev3: main.cpp has contents "hello world"
Repo: Project1_Again
- rev1: main.cpp has contents "hello world"
- rev2: main.cpp has contents "hello world again"
My goal is to get Project1's revision history into Project1_Again:
Repo: Project1_Again
- rev1: main.cpp has contents "h"
- rev2: main.cpp has contents "hello"
- rev3: main.cpp has contents "hello world"
- rev4: main.cpp has contents "hello world again"