I have two local git repositories, both cloned from different svn repositories:
git-6.1-pa (latest svn branch)
git-6.0-pa (stable svn branch, different source code tree, but similar to 6.1)
Currently, I have in git-6.1-pa
reviewed and committed to svn repository revision (by git svn dcommit) - e27cf8edb2f69daf054aa6bb379d668e4b3d52f0
with own git-svn-id.
What I want - to move this commit to another local git-6.0-pa
repository.
I tried this answer and it works great, but... I got:
1. Successfully applied commit.
2. This commit is not on top of history (3rd)
3. Contains unnecessary old git-svn-id, because I'm going to call git svn dcommit on this moved commit.
and I want to get:
1. Successfully applied commit (or diff suitable to commit).
2. Commit is on top of history (or diff suitable to commit)
3. Doesn't contain old git-svn-id, that I can just call git svn dcommit
Is this possible?