That merge command will produce a single commit, which isn't what you
want. format-patch + am should work to linearize history, but you
could also use rebase.
I recommend trying something like
git checkout -b test svn-branch && git format-patch svn-branch..git-
branch | git am
Then you can examine your test branch to make sure it's linear, make
sure it compiles and looks good, then if it's good merge that into svn-
branch (which will be a fast-forward).
-Kevin Ballard
--
Kevin Ballard
http://kevin.sb.orgkevin@sb.orghttp://www.tildesoft.com
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html