vote up 7 vote down star
4

I have a git repository which tracks an svn repository. I cloned it using --stdlayout.

I created a new local branch via git checkout -b foobar

Now I want this branch to end up in …/branches/foobar in the svn repository.

How do I go about that?

(snipped lots of investigative text. see question history if you care)

flag

51% accept rate

3 Answers

vote up 14 vote down check

as of git v1.6.1, git svn branch is available.

From the git docs:

    branch
        Create a branch in the SVN repository.

        -m, --message
            Allows to specify the commit message.

        -t, --tag
            Create a tag by using the tags_subdir instead of the branches_subdir
            specified during git svn init.

Previous versions of git do not provide a way to create an svn branch.

link|flag
vote up 1 vote down

@kch I just (7 December 2008) compiled the v1.6.1-rc1 tag of git and it does contain the git svn branch command and the documentation for it. So the v1.6.1 release of git should (hopefully) contain this command.

link|flag
indeed, i installed 1.6.1 now and the command is available. updated my answer accordingly. – kch Jan 1 at 14:00
vote up 0 vote down

So how can you get around the fact that git svn branch does not exist? How do i create a branch using git into the svn repository?

link|flag
2  
i've been doing either of: compile your own git, or, create the branch via vanilla svn and then git svn fetch. – kch Nov 25 '08 at 4:04
command now available. see my updated answer. – kch Jan 1 at 14:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.