Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 532
rm.rf.etc Avatar asked Jun 17 '14 02:06

rm.rf.etc


1 Answers

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??

like image 112
rm.rf.etc Avatar answered Oct 04 '22 22:10

rm.rf.etc