squash git code example
Example 1: git squash last 2 commits
git rebase -i HEAD~2
Example 2: squash 3 commit
$ git rebase -i HEAD~3
Example 3: squash commits in git
git reset --soft HEAD~3 &&
git commit
Example 4: git merge squash
git checkout master # Switches to your master branch.
git merge --squash bugfix # All grouped commits from bugfix to current branch
git commit # Creates a single commit from the merged changes