Given I have created a git repo on machine1 by pointing to svn with git svn clone --trunk=http://foo/project
And I keep pulling in new revisions from svn on machine1 with 'git svn rebase'
When I clone the git repo from machine1 to machine2
How do I repoint to svn my git repo on machine2 ???
So far I have done this:
Given I have repointed to svn with git svn init --trunk=http://foo/project
on machine2
When I do 'git svn rebase'
Then nothing happens, prompt just hangs.
When I do 'git svn fetch'
Then git wants to reimport all of svn revisions as if it's brand new and that takes me 2 hours, but after that git svn rebase
works fine.
When I do 'git svn fetch -r XXX' where XXX is the last svn revision id visible in last commit then I get some files from svn but after that git svn rebase
just hangs and nothing happens.
I am looking for a procedure to repoint to a subversion trunk to keep pulling in new changes. I do not plan to commit back to SVN at all.
Any ideas?
My env setup:
git-svn version 1.7.9.5 (svn 1.6.17)
git version 1.7.9.5
on linux mint 13