Migrate an svn repo to git - Where did all the branches got? and tags?

4 messages, 3 authors, 2016-06-15 · open the first message on its own page

Migrate an svn repo to git - Where did all the branches got? and tags?

From: Jack Moore <hidden>
Date: 2016-06-15 22:48:50

All,

I have a subversion repository with the usual structure

svn-repo
  |
  +-branches
      +-release1
      +-release2
  +-tags
      +-r1dev
      +-r1test
      +-r2dev
      +-r2test
  +-trunk

that I want to migrate to git.

I cloned the svn repo with

   git svn clone --no-metadata -t tags -b branches -T trunk <repo-url>

I used the example in the Pro Git book.

the cloned repo has files 

  git-repo/.git/refs/heads/master
  git-repo/.git/refs/remotes/trunk

directory

  git-repo/.git/refs/tags

is empty.

Directories git-repo/.git/logs/... have files corresponding to the branches and tags, but they do not appear to reference git objects.

There are unhandled.log.gz files in the .git/svn directory for each branch and tag.

If I do a 

	git branch -r

the branches and tags show up as remote branches.
gitk appears to show all of the commits, but I do not see any of the branches and tags.

I would like to make the branches and tags to appear al local to git repo.

Is there a way to do this?

Re: Migrate an svn repo to git - Where did all the branches got? and tags?

From: Thomas Rast <hidden>
Date: 2016-06-15 22:48:50

Jack Moore wrote:
   git svn clone --no-metadata -t tags -b branches -T trunk <repo-url>
[...]
  git-repo/.git/refs/tags

is empty.
[...]
If I do a 

	git branch -r

the branches and tags show up as remote branches.
That's how git-svn currently works.

To turn all remote branches into local branches you can use the
following trick (don't do this in any repo other than a fresh git-svn
clone unless you understand what it does!):

  git fetch . 'refs/remotes/*:refs/heads/*'

To further clean up history and turn svn tagging commits into real
tags, you can refer, e.g., to the last section of

  http://kb.curseforge.com/repositories/convert-svn-to-git/

-- 
Thomas Rast
trast@{inf,student}.ethz.ch

Re: Migrate an svn repo to git - Where did all the branches got? and tags?

From: Jack Moore <hidden>
Date: 2016-06-15 22:48:50

Thx, Thomas

Re: Migrate an svn repo to git - Where did all the branches got? and tags?

From: Ævar Arnfjörð Bjarmason <hidden>
Date: 2016-06-15 22:48:50

On Fri, May 21, 2010 at 13:57, Jack Moore [off-list ref] wrote:
Thx, Thomas
If your history isn't too crazy you might want to try converting with
snerp-vortex instead of git-svn.

It isn't always better (or indeed, often), but might be in your case.
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help