Max file size and max repository size in Git?

前端 未结 3 821
独厮守ぢ
独厮守ぢ 2020-12-24 05:55

I\'m looking to have Git as the primary source control for my employer (250 people) company. Before proceeding further I would like to have answers to the following question

3条回答
  •  臣服心动
    2020-12-24 06:10

    As mentioned in Git limits, Git has no file size or file number limit per se.
    But it:

    • Won't manage large files too well (which is why a project like Git-BigFiles exists)
    • Tag every file within its repository, which is why, if you have many different sets of files which each have their own development life-cycle, it is better to use several Git repositories anyway (see true nature of submodules).
      That approach is more suited to a component-driven development, and is quite different from the SVN external.

提交回复
热议问题