git

Git Tips and Tricks

Commit fixups

If you want to make a change to a previous commit, we can do it by interactive rebase (git rebase --interactive). But if we do it that way, you have to push an entirely new set of commits and if you have already submitted the changes for review, it will be hard on reviewers since they have to review the whole set again.

Read more →