I wrote a (bash) script located on my master branch and in the middle of it, I execute the following instructions:
(...)
git checkout featurebranch
git svn rebase
git checkout master
(...)
This script does not exist in the "featurebranch" so my script is aborted at the next instruction :) (you know, the man who saw the branc on which he sits :))
I don't really know how to resolve this problem since "git svn rebase" does not accept a target branch for the rebase operation, and I'm forced to checkout...