与 GitHub 相比,Windows 文件共享上的 Git 速度很慢
我们决定将共享的 Git 存储库托管在内部 Windows Server 共享上。然后,所有开发人员通过 VPN 连接访问此共享,以推送/拉取更改。
而且效果很好。
但我们怀疑它比正常情况慢,即。与 GitHub 相比 - 所以我们决定做一点速度测试,并在本地文件共享和 Github 上设置相同的项目。
结果很可怕:Fileshare Git 存储库比使用 GitHub 慢 5-7 倍。
谁能告诉我谁的速度差异巨大?
Windows 文件共享位于公平的 Windows Server 2003 上,它基本上仅作为文件服务器提供服务,并且服务器不忙或类似的情况。
所有开发人员都从 Mac OSX 访问此共享。
We decided to host our shared Git repositories on an internal Windows Server share. All devs then access this share via VPN connection, to push / pull changes.
And it works fine.
But we got suspicious that it was slower than normal, ie. compared to GitHub - so we decided to do a little speed test, and setup the same project both on the local fileshare and Github.
And the result was scary : Fileshare Git repository was 5-7 times slower than using GitHub.
Can anyone give me any clues to who there is the HUGE difference in speed ?
The Windows fileshare is located on a fair Windows Server 2003, which basically only servers as a fileserver and the server is NOT busy or anything like that.
All devs access this share from Mac OSX.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果“文件共享”意味着您正在使用“本地协议”(即远程协议)存储库位于磁盘上的另一个目录中(这里是远程),那么这是正常的:SSH 或基于智能 http 的解决方案会更快。
由于 GitHub 提供两种访问(SSH 或智能 HTTP),因此它比文件共享更快。
请参阅 8 种方法共享您的 Git 存储库,了解共享中央存储库的其他方式。
If by "fileshare" you mean you are using the "local protocol" (i.e. the remote repository is in another directory on a -- here remote -- disk), then this is normal: a SSH or smart http-based solution would be quicker.
Since GitHub offers both access (SSH or smart HTTP), it will be quicker than a fileshare.
See 8 ways to share your Git repo for other ways to share your central repo.