p4g*_*uru 3 git github git-rewrite-history bfg-repo-cleaner
我现有的 Github 存储库因 zip 和 tar.gz 文件而变得臃肿,因此我想将其迁移到启用了 Git LFS 的新存储库,该存储库与现有的 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
Run Code Online (Sandbox Code Playgroud)
我错过了什么吗?貌似推送也失败了
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'
Run Code Online (Sandbox Code Playgroud)
此外,原始 github 存储库还为 gitlab 和 bitbucket 以及备份位置添加了额外的遥控器。我相信 bitbucket 和 gitlab 都像 github 一样支持 Git LFS 吗?
干杯
| 归档时间: |
|
| 查看次数: |
3058 次 |
| 最近记录: |