Most of the comments to my recent articles on 3 Git commands I use every day and When to make a Git commit have mentioned using git rebase
.
So, let’s talk about git rebase
. Jumping right in, I use git rebase
for two reasons:
- To bring a stale branch up to date.
- To change a set of unmerged commits.
Let’s take a closer look at both of these.
Read more at Dev.to