当前位置:   article > 正文

如何迁移备份包含git lfs的仓库,包含代码、分支、提交记录_ue lfs仓库

ue lfs仓库

最近有个迁移仓库的需求,要把某个git服务器上的仓库转移到另一个服务器上

仅域名更新,需要保留原仓库的提交记录

普通的git仓库备份

网上查了一下实现方式非常简单:

假设源仓库的地址是:git@gitlib.threedog.top:threedog/test.git

新仓库的域名是:gitlib.threedog.net

首先,在新的git服务器上创建同名仓库test,空仓库就可以,然后:

git clone --bare git@gitlib.threedog.top:threedog/test.git
cd test.git 
git push --mirror git@gitlib.threedog.net:threedog/test.git
  • 1
  • 2
  • 3

这样,原仓库test.git就完整备份到了新的服务器上

包含gitlfs的仓库

git lfs 是git的一种二进制文件存储机制,主要用于仓库中存在一些较大的二进制文件的场景,可以有效的缩减git仓库体积,加快克隆效率

在一些新版的git客户端,gitlab github服务器上都支持git lfs

但是包含lfs的仓库在通过上述方案备份时,会报这个错误:

remote: Resolving deltas: 100% (187/187), done.
remote: GitLab: LFS objects are missing. Ensure LFS is properly set up or try a manual "git lfs push --all".
Togit@gitlib.threedog.net:threedog/test.git
 ! [remote rejected] dev -> dev (pre-receive hook declined)
 ! [remote rejected] master -> master (pre-receive hook declined)
error: 推送一些引用到 'git@gitlib.threedog.net:threedog/test.git' 失败
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

这种仓库应该,先现在并提交lfs文件对象,然后再push整个仓库:

git clone --bare git@gitlib.threedog.top:threedog/test.git
cd test.git 
git lfs fetch --all
git lfs push --all git@gitlib.threedog.net:threedog/test.git
git push --mirror git@gitlib.threedog.net:threedog/test.git
  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/木道寻08/article/detail/749486
推荐阅读
相关标签
  

闽ICP备14008679号