Skip to main content
The 2024 Developer Survey results are live! See the results
1 of 5
Xys
  • 10k
  • 3
  • 48
  • 60

Simple solution without rebase :

git reset --soft HEAD~2

git commit -m "new commit message"

git push --force

2 means the last two commits will be squashed. You can replace it by number

Xys
  • 10k
  • 3
  • 48
  • 60