We're doing a two way synchronization of one single branch "basic"
I've been able to git svn dcommit
before
When I do (in order to do the git -> svn part , for svn -> git , git svn fetch works like a charm)
git checkout -b svntrunk trunk
git rebase basic svntrunk
git svn dcommit
the last command end with
Unable to determine upstream SVN information from working tree history
If I do the rebase directly on basic
I finish with basic being messed up with the svn version of the commit (when we've 'dcommit' before on top of the actual commits) which seems to tell me that's not the way to go
Am I missing a step ?