Earlier quoted context omitted.
Facebook uses a monorepo, similar to the way Google does it. Dependencies are vendored and checked into the repo. Facebook has released a tool for migrating software between repos, which is much like Google's Copybara: Facebook's fbshipit: https://github.com/facebook/fbshipit Google's copybara: https://github.com/google/copybara With these tools, you can make fairly sophisticated choices about how you do vendoring. Y…
Thanks for the infos! What does "Dependencies are vendored and checked into the repo" mean?
ie copy software source into your own repository, ideally in such a way that you can keep it up to date (which is what shipit/copybara are for)