git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* git-svn with big subversion repository
@ 2011-03-02  2:43 John Kristian
  2011-03-02 16:09 ` Thomas Ferris Nicolaisen
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: John Kristian @ 2011-03-02  2:43 UTC (permalink / raw)
  To: git@vger.kernel.org

How do you recommend using git to work with branches of a large, busy
subversion repository? In general, how can small teams use git for their
tasks, and use subversion to coordinate with a larger organization?

git-svn has some trouble, I find. For example, this tries to copy the entire
repo starting with revision 1:

git svn clone --stdlayout svn+ssh://server/repo/project

This would take weeks, I estimate for my subversion repository.

Choosing a subset of the repository enables git svn clone to cope, but then
git svn fetch will stall after processing a few revisions.  For example:

git svn clone --no-follow-parent --no-minimize-url \
 --branches=branches \
 --ignore-paths="^(?!branches/(TEAM_|RELEASE_))" \
 -r $BASE svn+ssh://server/repo/project
git svn fetch --no-follow-parent # stalls

I don't why it stalls. I guess it's doing something that requires processing
the entire subversion repository.

The best I can do is clone each subversion branch into a separate svn-remote
section of the .git/config file, for example:

git svn clone --no-follow-parent --no-minimize-url \
 --svn-remote=TEAM_FOO --id=TEAM_FOO \
 -r $BASE svn+ssh://server/repo/project/branches/TEAM_FOO
git svn fetch --no-follow-parent

The clone runs about as long as svn checkout, and the fetch replays the
later revisions briskly. Sadly, the relationship between branches isn't
fetched: git log won't tell me how a given subversion branch was copied from
another. I use svn for that.

I'm using git version 1.7.4, git-svn version 1.7.4 (svn 1.6.5), svn version
1.6.0 (r36650) and Mac OS X version 10.6.5. I got git from MacPorts.

- John Kristian

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-03-11  0:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-02  2:43 git-svn with big subversion repository John Kristian
2011-03-02 16:09 ` Thomas Ferris Nicolaisen
2011-03-03  4:13 ` Phil Hord
2011-03-05 10:53 ` Florian Weimer
2011-03-09  5:53 ` Jason Miller
     [not found]   ` <C99D031D.D0D9%jkristian@linkedin.com>
2011-03-11  0:32     ` Jason Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).