A team is transitioning a large legacy codebase to Git. They encounter issues with large binary files. What Git feature should they consider using?

  • Git LFS
  • Git submodules
  • Git cherry-pick
  • Git rebase
Large binary files can be efficiently managed using Git LFS (Large File Storage). Git LFS is an extension that replaces large files in a repository with tiny pointer files while storing the actual file contents on a separate server. This helps in handling binary files more effectively.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *