Hacker News new | ask | show | jobs
by paulryanrogers 1913 days ago
Are you suggesting Svn with externals? If so how is it better than Git and submodules?

(Having used both I'd say I dislike both equally.)

1 comments

I mean just having all your dependencies in a mono repo and vendoring the correct version your application depends on.
If that's all you want, you can absolutely use git as a monorepo, and you can check in vendored dependencies just as easily.

The main downside (and I admit it can be a big one) to a git monorepo (vs. svn) is that you can't check out a subtree all that easily.

(I do agree with the parent that svn externals is a lot more seamless than git submodules, though.)