|
|
|
|
|
by saraid216
5002 days ago
|
|
> But I'd prefer to keep that history, but rarely use or display it. So why have it? > I'm still new-ish to git and don't get why rebase is popular. My most common use case for rebase is actually to keep my private branches up to date with master. `git rebase master` or `git fetch origin && git rebase origin/master` are common tools for me when I'm doing private work for an extended period of time. This way, I don't have a point where my private branch diverges from master; my changes are always fresh and based off the latest and greatest. |
|