Limit on number of git branches

后端 未结 2 1786
执笔经年
执笔经年 2020-12-30 22:13

I am musing about building a big system on top of git for various reasons but mainly convenience.

But as part of the implementation I would end up making mi

相关标签:
2条回答
  • 2020-12-30 22:46

    There was a thread about scalability problems in this area on the git mailing list last year, as I recall there were some improvements made but I don't recall off hand what the performance was like with the changes that got incorporated into newer versions as a result.

    Here's a link to an archive of that thread:

    http://git.661346.n2.nabble.com/Git-is-not-scalable-with-too-many-refs-td6456443.html

    0 讨论(0)
  • 2020-12-30 22:47

    Yes, branches are free. Branching and merging is very easy.

    The scalability issues mentioned before comes only when synchronizing a vast amount of branches through the network (git fetch, git pull, git push). Locally you shouldn't have any problem.

    0 讨论(0)
提交回复
热议问题