Skip to content

Commit b28f11b

Browse files
fix(GitDestination): renormalize during git add
- enables use of Git LFS in git destinations Co-authored-by: Ashraful Islam <ashraful@presagetech.com>
1 parent d3b27c9 commit b28f11b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: java/com/google/copybara/git/GitDestination.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -549,7 +549,7 @@ public ImmutableList<DestinationEffect> write(TransformResult transformResult,
549549

550550
console.progress("Git Destination: Adding all files");
551551
try (ProfilerTask ignored = generalOptions.profiler().start("add_files")) {
552-
alternate.add().force().all().run();
552+
alternate.add().force().renormalize().all().run();
553553
}
554554

555555
console.progress("Git Destination: Excluding files");

0 commit comments

Comments
 (0)