How to delete one folder / directory using BFG repo cleaner?

£可爱£侵袭症+ 提交于 2020-01-01 04:30:27

问题


How do I delete only one directory using BFG?

The help says:

delete folders with the specified names (eg '.svn', '*-tmp' - matches on folder name, not path within repo)

Which seems to mean that --delete-folders "config" will match all folders named config, anywhere in the repository.


回答1:


I found the answer here: remove files from specific path

The author of BFG says it can't be done, unless you use a special command to dump all blobs for a given directory to a text file, and then use --strip-blobs-with-ids and provide that text file.

[UPDATE] This doesn't work for me. I run the command:

git log --format=%H -- cms/assets/ | xargs -IcommitId git rev-parse commitId:cms/assets/

I get a list of 8 blob ids. I put those in text file, then I exec bfg -bi ~/tmp/blob-ids, and BFG exits saying: BFG aborting: No refs to update - no dirty commits found??



来源:https://stackoverflow.com/questions/24254979/how-to-delete-one-folder-directory-using-bfg-repo-cleaner

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!