Arthur Ulfeldt
Arthur Ulfeldt

Reputation: 91554

How can I push to a git-svn repo?

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

Answers (1)

wRAR
wRAR

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

Related Questions