Skip to content

Commit b94db85

Browse files
committed
filter-repo: report on and record LFS objects we find
After finding and tracking LFS objects orphaned by the rewrite as done in the last few commits, report on and record these objects as well. Signed-off-by: Elijah Newren <newren@gmail.com>
1 parent 40177c6 commit b94db85

File tree

3 files changed

+42
-5
lines changed

3 files changed

+42
-5
lines changed

Documentation/git-filter-repo.txt

+15
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,21 @@ have been made public and shared from the previous rewrite, then the next
512512
filter-repo run should not be considered a continuation of the previous
513513
filtering run.
514514

515+
Original LFS Objects
516+
~~~~~~~~~~~~~~~~~~~~
517+
518+
When running with the --sensitive-data-removal flag, and LFS is in use by the
519+
repository, the `$GIT_DIR/filter-repo/original_lfs_objects` contains a list of
520+
LFS objects referenced by the repository before the rewrite, in sorted order.
521+
522+
Orphaned LFS Objects
523+
~~~~~~~~~~~~~~~~~~~~
524+
525+
When running with the --sensitive-data-removal flag, and LFS is in use by the
526+
repository, the `$GIT_DIR/filter-repo/orphaned_lfs_objects` contains a list of
527+
LFS objects that used to be referenced by the repository but no longer are after
528+
git-filter-repo has run. Objects appear in sorted order.
529+
515530
[[FRESHCLONE]]
516531
FRESH CLONE SAFETY CHECK AND --FORCE
517532
------------------------------------

git-filter-repo

+22
Original file line numberDiff line numberDiff line change
@@ -4656,6 +4656,27 @@ class RepoFilter(object):
46564656

46574657
return commit_renames, ref_maps, first_changes
46584658

4659+
def _handle_lfs_metadata(self, metadata_dir):
4660+
if self._lfs_object_tracker is None:
4661+
print("NOTE: LFS object orphaning not checked (LFS not in use)")
4662+
return
4663+
4664+
with open(os.path.join(metadata_dir, b'original_lfs_objects'), 'bw') as f:
4665+
for obj in sorted(self._lfs_object_tracker.source_objects.objects):
4666+
f.write(obj+b"\n")
4667+
4668+
orphaned_lfs_path = os.path.join(metadata_dir, b'orphaned_lfs_objects')
4669+
msg = textwrap.dedent(_(f"""\
4670+
NOTE: There were LFS Objects Orphaned by this rewrite recorded in
4671+
{decode(orphaned_lfs_path)}."""))
4672+
with open(orphaned_lfs_path, 'bw') as f:
4673+
differences = self._lfs_object_tracker.source_objects.objects - \
4674+
self._lfs_object_tracker.target_objects.objects
4675+
for obj in sorted(differences):
4676+
f.write(obj+b"\n")
4677+
if differences:
4678+
print(msg)
4679+
46594680
def _record_metadata(self, metadata_dir, orig_refs):
46604681
self._flush_renames()
46614682
commit_renames, ref_maps, first_changes = \
@@ -4671,6 +4692,7 @@ class RepoFilter(object):
46714692
with open(os.path.join(metadata_dir, b'sensitive_data_removal'), 'bw') as f:
46724693
pass # Write nothing; we only need the file created
46734694

4695+
self._handle_lfs_metadata(metadata_dir)
46744696
print("") # Add a blank line after important rewrite information
46754697

46764698
with open(os.path.join(metadata_dir, b'commit-map'), 'bw') as f:

t/t9393-filter-repo-rerun.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@ test_expect_success 'sdr: handling local-only changes' '
643643
# attempting to smudge them, which would just result in an error.
644644
export GIT_LFS_SKIP_SMUDGE=1
645645

646-
test_expect_failure 'lfs: not in use, no files to process' '
646+
test_expect_success 'lfs: not in use, no files to process' '
647647
test_create_repo no_lfs_files_to_process &&
648648
(
649649
cd no_lfs_files_to_process &&
@@ -666,7 +666,7 @@ test_expect_failure 'lfs: not in use, no files to process' '
666666
)
667667
'
668668

669-
test_expect_failure 'lfs: no files orphaned' '
669+
test_expect_success 'lfs: no files orphaned' '
670670
test_create_repo no_lfs_files_orphaned &&
671671
(
672672
cd no_lfs_files_orphaned &&
@@ -677,7 +677,7 @@ test_expect_failure 'lfs: no files orphaned' '
677677
--invert-paths --force >output &&
678678
679679
! grep "NOTE:.*LFS not in use" output &&
680-
! grep "NOTE:.*LFS objects orphaned by this rewrite" output &&
680+
! grep "NOTE:.*LFS Objects Orphaned by this rewrite" output &&
681681
682682
cat <<-EOF >expect &&
683683
sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -701,7 +701,7 @@ test_expect_failure 'lfs: orphaning across multiple runs' '
701701
git filter-repo --sensitive-data-removal --path LB --path LD \
702702
--invert-paths --force >output &&
703703
704-
grep "NOTE:.*LFS objects orphaned by this rewrite" output &&
704+
grep "NOTE:.*LFS Objects Orphaned by this rewrite" output &&
705705
706706
cat <<-EOF >orig_expect &&
707707
sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
@@ -738,7 +738,7 @@ test_expect_failure 'lfs: orphaning across multiple runs with blob callback' '
738738
--invert-paths --blob-callback pass \
739739
--force >output &&
740740
741-
grep "NOTE:.*LFS objects orphaned by this rewrite" output &&
741+
grep "NOTE:.*LFS Objects Orphaned by this rewrite" output &&
742742
743743
cat <<-EOF >orig_expect &&
744744
sha256:aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa

0 commit comments

Comments
 (0)