我已经阅读了一些关于从 git 提交历史中删除大型二进制文件的 不同 线程,但我的问题只是有点不同。因此,我在这里的问题是理解和确认这些步骤 -
我的 git 仓库是~/foo
. 我想从 repo 内的一个目录中删除所有 *.jpg、*.png、*.mp4、*.ogv (等等),特别是从~/foo/public/data
.
步骤 1. 删除文件
~/foo/data > find -E . -regex ".*\.(jpg|png|mp4|m4v|ogv|webm)" \
-exec git filter-branch --force --index-filter \
'git rm --cached --ignore-unmatch {}' \
--prune-empty --tag-name-filter cat -- --all \;
步骤 2. 将二进制文件扩展名添加到 .gitignore 并提交 .gitignore
~/foo/data > cd ..
~/foo > git add .gitignore
~/foo > git commit -m "added binary files to .gitignore"
步骤 3. 推动一切
~/foo > git push origin master --force
我在上面的正确轨道上吗?我想在剪一次之前测量两次,可以这么说。
更新:好吧,上面给了我错误
You need to run this command from the toplevel of the working tree.
You need to run this command from the toplevel of the working tree.
..
所以我上树到顶层并重新运行命令,这一切都奏效了。