The technique of _______ in Git allows the separation of large binary files from the codebase, ideal for database backups.
- cloning
- stashing
- LFS (Large File Storage)
- purging
The technique of LFS (Large File Storage) in Git allows the separation of large binary files from the codebase, making it ideal for managing database backups and other large assets. Git LFS replaces large files with text pointers, reducing the overall repository size and improving performance. This is particularly beneficial when dealing with large binary files commonly found in database backups.
Loading...
Related Quiz
- When a merge conflict occurs, which section of the conflict markers indicates the changes from the current branch?
- Code reviews are often performed on the changes in a _______ before they are merged into the main branch.
- What are the best practices for managing a pull request in a large project?
- How can you find a commit in the Git history that introduced a bug using the git bisect command?
- In Git, how would you manage multiple remote repositories for the same local repository?