Hugo Sereno Ferreira
Hugo Sereno Ferreira

Reputation: 8631

How to correctly preserve branch/merge history of an SVN repository when migrating to GIT

I'm trying to migrate a small SVN repository w/ 2000+ revs with 10+ branches to GIT. Branches sometimes merge contents from other branches. My main choice, was obvisously to use:

git svn clone -s URL

However, my GIT history only preserved the branching information and never shows a merge. Having an hard time googling for this too... Am I missing something?

Upvotes: 0

Views: 769

Answers (1)

Dustin
Dustin

Reputation: 91050

svn only very recently added merge tracking. Does your version of subversion support it? If it does, do you know how it actually communicates that to git so that git could model it as well?

Upvotes: 1

Related Questions