I have two git repositories. Both have a master branch that is manually kept in sync with a different branch of the same CVS repository, and a decent amount of feature branches.
For example
- Git repository OLD:
- master (manually tracking the CVS branch OLD_VERSION)
- feature-abc-backport
- feature-xyz
- Git repository CURRENT:
- master (manually tracking HEAD of the CVS repository)
- feature-abc
- feature-123
I now want to import all branches from OLD into CURRENT, with some prefix added (e.g. OLD-master, OLD-feature-abc-backport, OLD-feature-xyz). Is this possible?