将 git 存储库克隆到 FTP 服务器

发布于 2024-10-16 10:29:33 字数 135 浏览 2 评论 0原文

我在 Stackoverflow 和各种网站上进行了大量搜索,但似乎无法找到有关如何将 git 存储库从本地计算机克隆到 FTP 服务器的快速答案。

我正在使用 Ubuntu 10.04 LTS。我的网络应用程序也在 Heroku 上运行。

I've done quite a bit of searching on Stackoverflow and on various websites and can't seem to find a quick answer on how to clone a git repository from my local machine to an FTP server.

I'm working with Ubuntu 10.04 LTS. Also my webapp is being run on Heroku.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

暗恋未遂 2024-10-23 10:29:33

您不会将存储库克隆到远程位置,而是远程位置克隆到您的系统

如果您希望将存储库放在 FTP 服务器上,请使用 FTP 客户端手动上传它,并通过引用其 FTP URL 来推送您未来的提交。

当然,如果您可以通过 SSH 访问您的服务器,您也可以登录它并从那里克隆。

You don't clone a repository to a remote place, but from a remote place to your system.

If you want your repository on a FTP server, upload it by hand using an FTP client, and push your future commits by referring its FTP url.

On course, if you have SSH access to your server, you can also log in it, and clone from there.

哭泣的笑容 2024-10-23 10:29:33

重要提示:

不要忘记做
git update-server-info
在将存储库上传到您的 ftp 服务器之前

,并可能将其添加到 post-update 脚本中,以便您的 info/refs 文件是最新的!

Important note:

don't forget to do a
git update-server-info
before uploading the repository to your ftp server

and maybe adding it to a post-update script so that your info/refs file is current !

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