What is Squash and Merge?
Squash and Merge is a merge option that merges a sequence of commits into a single commit when you complete a pull request.
The Squash and Merge feature is only available in a Pull Request. When you are ready to merge your Pull Request, you can select the arrow next to the Merge Pull Request button and select the Squash and Merge option.
Squashing and Merging can be useful for a number of different reasons, some of them being:
- Simplifying commit history: Squashing commits condenses the history, making it easier to understand and navigate. This can be particularly helpful when working with large teams or complex projects.
- Providing clearer context: By merging all changes from a feature branch into a single commit, it becomes easier to understand the context and purpose of the changes. This can make reviewing code and understanding the impact of changes more straightforward.
However, it's important to note that Squash and Merge may not always be the best approach, depending on your project's specific needs and requirements. In some cases, retaining the full commit history can provide valuable context and help maintain a more accurate record of the development process.
Elements of the UI may have changed since the time of posting. For the most up-to-date information, refer to our Documentation.