Microsoft hosts the Windows source in a monstrous 300GB Git repository
1–10 of 11 posts
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#2What takes up most of the space in the repo, is it just from code or are a lot of binaries in there? No doubt the windows code base is particularly large, but I would have though most of it would be slow moving.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#3Same version control as Linux!
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#4What takes up most of the space in the repo, is it just from code or are a lot of binaries in there? No doubt the windows code base is particularly large, but I would have though most of it would be slow moving.
This is speculation, but if they have design assets, sounds, videos, localizations, and other things that aren't technically code but are totally part of Windows, then I can definitely see why it'd balloon to that order of magnitude.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#5Previous HN discussion: https://news.ycombinator.com/item?id=13559662
There's even an MS employee from their Git team participating in the discussion.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#6Same version control as Linux!
For Linux they don't use virtualized file systems.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#7Explains the need for https://blogs.msdn.microsoft.com/visualstudioalm/2017/02/03/... then. Crazy.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#8Explains the need for https://blogs.msdn.microsoft.com/visualstudioalm/2017/02/03/... then. Crazy.
It's on the first paragraph of your link:
> For example, the Windows codebase has over 3.5 million files and is over 270 GB in size.
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#9Slightly OT, but I've only ever used Git for version control. At the end of the article, the author mentions that Facebook uses (a custom version of) Mercurial instead of Git.
What are the benefits to using Mercurial over Git?
Re: Microsoft hosts the Windows source in a monstrous 300GB Git repository
#10Slightly OT, but I've only ever used Git for version control. At the end of the article, the author mentions that Facebook uses (a custom version of) Mercurial instead of Git. What are the benefits to using Mercurial over Git?
If I remember correctly, the reason Facebook switched to Mercurial from Git was because they needed to make some changes or add additional functionality and Mercurial is an easier system to do that with, apparently.