使用符号链接在 Windows 上构建 Git?

发布于 2025-01-04 22:30:17 字数 275 浏览 0 评论 0原文

我使用源代码在 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 技术交流群。

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

发布评论

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

评论(1

若水微香 2025-01-11 22:30:17

使用 GCC 构建 Git 会创建多个硬链接。这些似乎每个占用 5,329 KB,但它们都链接到同一内存,因此总共占用 5,329 KB。

知道这一点后,我想要一种无需它们即可简单构建 Git 的方法,因此我将其发布到邮件列表中。这是我的回应。

如果你真的想这样做,正确的方法不是破坏 BUILT_INS
清空。我不知道GfW是如何构建的,但是如果它使用我们常用的
Makefile,找到安装 git-foo 形式链接的位置
安装主 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.

If you really want to do so, the right way is not by mucking BUILT_INS
to empty. I do not know how GfW is built, but if it uses our usual
Makefile, find the place where it installs the git-foo forms of links
after it installs the main git executable, and comment it out.

And no, it will not be a compilation option, as the resulting
installation will break the age-old promise we made to script writers.

thread.gmane.org/gmane.comp.version-control.git/196179/focus=196182

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