来自“make”的文件是什么?我实际上需要运行 git 的 git 吗?
我正在尝试“移植”git,因此我想将所需的可执行文件从 git 的 make 进程发送到我的托管 Web 服务器。我可以这样做吗?您认为可执行文件可以工作吗?
I'm trying to "portablize" git, so I want to send the required executables from the make process of git to my hosted web server. Can I do that? Do you think the executables will work?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我这样做的方法是:
--prefix=/home/myuser
编译这些依赖项,并将它们安装在我家的usr/local/lib
中目录然后我只能复制 < code>/home/myuser/git 和
/home/myuser/usr/local
(以及$prefix/libexec/git-core
作为 Jakub 在评论中提到)任何其他类似的服务器,知道它将独立于任何现有的系统库工作。The way I do it is to:
--prefix=/home/myuser
and install them in theusr/local/lib
of my home directoryI can then copy only
/home/myuser/git
and/home/myuser/usr/local
(and$prefix/libexec/git-core
as Jakub mentions in the comments) to any other similar server, knowing it will work in isolation from any existing system libraries.