Is there a way to pass git filter-branch a regular expression to remove files/directories permanently from the history?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
|
|
Assuming you want to do an index filter (which won't need to change your work tree), you can script on all commits and only change the files you need by sed, egrep or grep on the output of
(this is the script you would provide in the filter-branch command) Here is an example from the documentation ( http://www.kernel.org/pub/software/scm/git/docs/git-filter-branch.html ):
|
|||||||||||
|