Y
Hacker News
new
|
ask
|
show
|
jobs
by
vruiz
2620 days ago
Does anybody know how these companies development environments look like? I know about Piper at Google but how do the rest manage? Does every single engineer have the entire monorepo in their machines?
2 comments
Shish2k
2619 days ago
At facebook, a virtual filesystem (
https://github.com/facebookexperimental/eden
) + change monitor (
https://facebook.github.io/watchman/
) = source control operations run in O(files I have modified) instead of O(size of repository) time
link
vruiz
2619 days ago
Very interesting, thanks!
link
YawningAngel
2620 days ago
Most places I know of use Git Virtual File System or equivalents.
link
vruiz
2620 days ago
It is my understanding that VFSForGit only works on Windows.
link
filoleg
2619 days ago
The github repo has instructions for running it on Mac and says that the stable Mac version is under active development.
link