Skip to content

Commit dbfb5e7

Browse files
committed
filter-repo: send blobs through RepoFilter._insert_into_stream()
We send commits through RepoFilter._insert_into_stream(), and objects added by the user will go through this function as well. If we want to be able to intercept all objects in one place (e.g. to see what LFS objects are still referenced by the new history), it will be easier if we ensure blobs also go through this function. Signed-off-by: Elijah Newren <newren@gmail.com>
1 parent 00ea72d commit dbfb5e7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

git-filter-repo

+2
Original file line numberDiff line numberDiff line change
@@ -3657,6 +3657,8 @@ class RepoFilter(object):
36573657
if self._blob_callback:
36583658
self._blob_callback(blob, self.callback_metadata())
36593659

3660+
self._insert_into_stream(blob)
3661+
36603662
def _filter_files(self, commit):
36613663
def filename_matches(path_expression, pathname):
36623664
''' Returns whether path_expression matches pathname or a leading

0 commit comments

Comments
 (0)