Reputation: 91554
I cloned an svn repo with git svn clone ...
and now I want to push changes to it. after that I will use this repo to rebase everything and commit back to svn. The problem that pushing to a non-bare repo seems to not be a good idea, and git svn seems unhappy about working with a bare one?
Upvotes: 1
Views: 506
Reputation: 25693
You can always use an intermediate bare repo. After all, pushing to a repo with which you work is not a good idea. You can also pull to it instead of pushing if this option is available.
Upvotes: 2