What are the implications of squashing commits when merging a feature branch into the main branch?
- Preserve individual commit history
- Combine multiple commits into one
- Increase repository size
- Create conflicts in the main branch
Squashing commits combines multiple commits into a single commit, providing a cleaner history. It helps maintain a more organized and readable history but can result in the loss of individual commit details.
Loading...
Related Quiz
- What is the primary purpose of a version control system?
- You're working on a feature in a separate branch and want to include recent changes from the main branch. What Git strategy should you use?
- _________ in Git can be automated in an IDE to ensure code quality before commits.
- Git's __________ feature allows users to record changes to the repository without affecting the working directory.
- What is the key difference between rebasing and merging in Git?