带 FTP 的 GIT 镜像
是否可以在 FTP 服务器上镜像 GIT 存储库?如果没有,使用 FTP 备份存储库的最佳解决方案是什么?
提前致谢, 埃塔姆。
is it possible to mirror GIT repository on an FTP server? If not, what is the best solution to backup repositories with FTP?
Thanks in advance,
Etam.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您可以访问(SSH)服务器 - 您可以使用rsync,scp
如果您只能ftp访问,请使用ncftp
您将把包含存储库的文件夹复制到本地(远程)计算机。
If you have access (SSH) to the server - you can use rsync, scp
If you have ftp only access use ncftp
You will copy the folder with your repo to local (remote) machine.
完全备份 git 存储库所需要做的就是复制目录。
如果您想要一个真正的镜像,那么现在这将更具挑战性,因为每个存储库都充当完整的服务器。请具体说明您对镜子的期望。
All you need to fully backup a git repository is to copy the directory.
If you want a real mirror, now that would be more challenging, since each repository acts as a full server. Please specify what you expect from the mirror.