使用符号链接在 Windows 上构建 Git?
我使用源代码在 Windows 上成功构建了 Git github.com/msysgit/git。
当我进入 /libexec/git-core
时,我看到 106 个文件,每个文件大小为 5,329 KB。
git.exe
git-add.exe
git-apply.exe
etc.
如何构建 Git 才能使这些成为正确的 0 字节快捷方式?
I successfully built Git on Windows using the source
github.com/msysgit/git.
When I go into /libexec/git-core
I see 106 files at 5,329 KB each.
git.exe
git-add.exe
git-apply.exe
etc.
How do I build Git so that these are proper 0 byte shortcuts?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 GCC 构建 Git 会创建多个硬链接。这些似乎每个占用 5,329 KB,但它们都链接到同一内存,因此总共占用 5,329 KB。
知道这一点后,我想要一种无需它们即可简单构建 Git 的方法,因此我将其发布到邮件列表中。这是我的回应。
thread.gmane.org/gmane.comp.version-control .git/196179/focus=196182
Building Git with GCC creates several hard links. These appear to each take up 5,329 KB but they are all linked to the same memory, so in total they take up 5,329 KB.
Knowing this I wanted a way to simply build Git without them, so I posted to the mailing list. Here was my response.
thread.gmane.org/gmane.comp.version-control.git/196179/focus=196182