How can I git squash commits to combine my last N commits into a single commit?

Yep, interactive rebase is solid, but sometimes I prefer a quicker way using git reset.

:one: git reset --soft HEAD~N (Keeps changes staged)

:two: git commit -m "Squashed commit message"

This method lets you squash commits without an interactive editor. Great for quick fixes! :zap: