与 GitHub 相比,Windows 文件共享上的 Git 速度很慢

发布于 2024-11-10 14:33:35 字数 362 浏览 3 评论 0原文

我们决定将共享的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梅倚清风 2024-11-17 14:33:35

如果“文件共享”意味着您正在使用“本地协议”(即远程协议)存储库位于磁盘上的另一个目录中(这里是远程),那么这是正常的:SSH 或基于智能 http 的解决方案会更快。

缺点

[...]如果您想在家中从笔记本电脑进行推送,则必须安装远程磁盘,与基于网络的访问相比,这可能会很困难且缓慢。

还需要注意的是,如果您使用某种共享安装,这不一定是最快的选项
仅当您能够快速访问数据时,本地存储库才是快速的。
NFS 上的存储库通常比同一服务器上通过 SSH 的存储库慢,这允许 Git 在每个系统上的本地磁盘上运行。

由于 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.

The Cons

[...] If you want to push from your laptop when you’re at home, you have to mount the remote disk, which can be difficult and slow compared to network-based access.

It’s also important to mention that this isn’t necessarily the fastest option if you’re using a shared mount of some kind.
A local repository is fast only if you have fast access to the data.
A repository on NFS is often slower than the repository over SSH on the same server, allowing Git to run off local disks on each system.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文