次のレイアウトを検討してください。
git | svn ----------------------------------- マスター| トランク local_experimental | 実験的
次のコマンドのリストは、実行するのに合理的なものですか。
git checkout local_experimental
#hack hack hack
#commit changes to experimental svn branch
git svn dcommit experimental
#update the git repository from svn
git checkout master
git svn rebase
git checkout local_experimental
#how will svn handle the two following commands?
#rebase the experimental branch on master to get newest changes
git rebase master
git svn dcommit