将 git 存储库克隆到 FTP 服务器
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不会将存储库克隆到远程位置,而是从远程位置克隆到您的系统。
如果您希望将存储库放在 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.
重要提示:
不要忘记做
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 yourinfo/refs
file is current !