How do I track upstream SVN changes using git-svn and github?
I used git-svn to convert an SVN repo to git on github:
$ git svn clone -s http://svn.osqa
It looks like, with the exception of your rebase, everything happened as expected, but with a lot more verbiage that you might expect. Here's what I think I would do to create/integrate the bits on a new machine:
--prefix=svn/ when cloning so that all of my remote branches from Svn are annotated as such.git co -b local-branch svn/branchname. Now you have a nice, local area for playing with stuff.git pull origin master (pull from origin to the master branch).git svn rebase.I haven't tried this, but it's a pretty typical workflow and the errors you're getting don't seem to be related to your service of two remotes (Svn and Github). They appear to be a bit more generic and related to your workflow and how you're calling the commands.