Skip to content

Commit f04fad5

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

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)