Squashing commits to single commit
Motivation
while doing the merge when there are multiple commits it is a good practice to combine your local changes into one commit so that it is easier for the person who is doing the merge
command :
git rebase -i HEAD~3
this will open a window wit...
hashcodehub.hashnode.dev1 min read