Skip to content

Commit

Permalink
fix(GitDestination): renormalize during git add
Browse files Browse the repository at this point in the history
- enables use of Git LFS in git destinations

Co-authored-by: Ashraful Islam <[email protected]>
  • Loading branch information
Algomorph and 1-ashraful-islam committed Oct 16, 2024
1 parent d3b27c9 commit b28f11b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/com/google/copybara/git/GitDestination.java
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ public ImmutableList<DestinationEffect> write(TransformResult transformResult,

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

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

0 comments on commit b28f11b

Please sign in to comment.