git本地仓库瘦身
git filter-branch --force --index-filter 'git rm -r --cached --ignore-unmatch <某个目录>' --prune-empty --tag-name-filter cat -- --all
git reflog expire --expire=now --all
git gc --prune=now
git gc --aggressive --prune=now
git filter-branch --force --index-filter 'git rm -r --cached --ignore-unmatch <某个目录>' --prune-empty --tag-name-filter cat -- --all
git reflog expire --expire=now --all
git gc --prune=now
git gc --aggressive --prune=now