When using Git inside of Intellij, how do I squash all of my commits for a local branch? What settings do I use in the rebase branch window?
I\'ve tried setting the Onto
If you want something like "git merge -squash" means merge a branch to another branch (possibly "master") with one commit contains all of the changes, you can use "Merge Changes..." option in Intellij. Just double press shift and type "Merge Changes". In the opened dialog select what branch you want to merge and then select "Squash commit" option.