带 FTP 的 GIT 镜像

发布于 2024-11-01 20:49:49 字数 79 浏览 4 评论 0原文

是否可以在 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 技术交流群。

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

发布评论

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

评论(2

橘虞初梦 2024-11-08 20:49:49

如果您可以访问(SSH)服务器 - 您可以使用rsyncscp

scp -r [email protected]:/home/user/repo.git /home/user/Desktop/repo.git

如果您只能ftp访问,请使用ncftp

ncftpget –R –v –u "user" ftp.example.com /home/user/repo.git

您将把包含存储库的文件夹复制到本地(远程)计算机。

If you have access (SSH) to the server - you can use rsync, scp

scp -r [email protected]:/home/user/repo.git /home/user/Desktop/repo.git

If you have ftp only access use ncftp

ncftpget –R –v –u "user" ftp.example.com /home/user/repo.git

You will copy the folder with your repo to local (remote) machine.

铜锣湾横着走 2024-11-08 20:49:49

完全备份 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.

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