Can we use rebase to squash multiple commits into one single commit on the same branch?
Taking an example, i have created two topic branches - issueA_1 and issueA_2 from
Yes, the simplest way I find is to do:
git rebase -i HEAD~3
This will let you review the last 3 commits and you can then squash them.