# notes-manifest **Repository Path**: caobinxin/notes-manifest ## Basic Information - **Project Name**: notes-manifest - **Description**: 用repo去管理 工作笔记和日常demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-05 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 处理git 大文件提交的方案: 参照这个网址:https://www.cnblogs.com/lout/p/6111739.html 第一步: 检测大文件 git verify-pack -v .git/objects/pack/pack-*.idx | sort -k 3 -g | tail -5 第二步: 找到大文件的对应的名字 git rev-list --objects --all | grep 8f10eff91bb6aa2de1f5d096ee2e1687b0eab007 第三步:删除大文件 git filter-branch --index-filter 'git rm --cached --ignore-unmatch ' rm -rf .git/refs/original/ git reflog expire --expire=now --all git fsck --full --unreachable git repack -A -d git gc --aggressive --prune=now git push --force [remote] master ## gitee同步repo项目的命令: repo init --repo-url=https://gitee.com/caobinxin/repo.git --repo-branch=master --no-repo-verify -u http://gitee.com/caobinxin/notes-manifest.git