我现有的Github仓库因zip和tar.gz文件而变得臃肿,所以我想将它迁移到 new Git LFS启用的repo,它与现有的Github仓库分开进行测试,以便现有的Github回购未触动。我遇到了一个名为bfg-repo-cleaner https://github.com/rtyley/bfg-repo-cleaner的精彩工具,看起来就像我需要的!
我编制了我认为我需要制作的步骤,但是会喜欢第二双眼睛,以确保这些是正确的步骤。
原始现有仓库为https://github.com/username/source.git
且新目的地Git LFS启用仓库为https://github.com/username/destination-lfs.git
pass=PERSONAL_ACCESS_TOKEN
ORIGINAL="https://github.com/username/source.git"
REPONAME_ORIGINAL='source.git'
NEW="https://username:"${pass}"@github.com/username/destination-lfs.git"
REPONAME_NEW='destination-lfs.git'
# setup local work space
mkdir -p /home/workgit
cd /home/workgit
# download bfg
wget -cnv http://repo1.maven.org/maven2/com/madgag/bfg/1.12.12/bfg-1.12.12.jar -O bfg.jar
alias bfg='/bin/java -jar bfg.jar'
# setup local git
git clone --mirror "$ORIGINAL" "$REPONAME_NEW"
cd $REPONAME_NEW
git count-objects -v
git remote rename origin upstream
git remote add origin $NEW
git remote -v
cd ../
time bfg --convert-to-git-lfs '*.{zip,gz,rpm,tgz,xz,bz2,rar,7z,pdf,eot,svg,ttf,woff,woff2}' --no-blob-protection $REPONAME_NEW
cd $REPONAME_NEW
git reflog expire --expire=now --all && git gc --prune=now --aggressive
git count-objects -v
git lfs init
git push --dry-run -u origin master
git push -u origin master
我错过了什么吗?似乎推动也失败了
git push --dry-run -u origin master
Git LFS: (76 of 43 files) 799.22 MB / 1.43GB
Authorization error: https://github-cloud.s3.amazonaws.com/xxxx/media/*****?actor_id=xxxxxx
Check that you have proper access to the repository
error: failed to push some refs to 'https://username:"${pass}"@github.com/username/destination-lfs.git'
此外,原版github repo还为gitlab和bitbucket以及备份位置添加了额外的遥控器。我相信bitbucket和gitlab都像Github一样支持Git LFS吗?
干杯
答案 0 :(得分:2)
Git LFS团队currently recommends git-lfs-migrate是首选的迁移工具:
git-lfs-migrate现在是首选方式。你不应该再需要filter-branch ......我希望