Replies: 1 comment
-
Thanks for asking. I was always not entirely sure what the benefits of merge vs rebase is, but as I understand, rebase will stop at every commit if there are conflicts, right? Merging them locally, I always thought it was easier to fix them in one go, but I've wanted to give this a go anyway. It just got lost among everything else 😅 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I see there are a lot of Merge branch 'master' of github.com:squidfunk/mkdocs-material commits, and many of these are merges of a single divergent commit. IMO these single-commit merges are most of the time only clutters to the commit history, and I personally have developed a habit of using
git pull --rebase
(short option-r
, configpull.rebase = true
) so the Git history stays linear. I wonder if you find this tip useful. @squidfunkBeta Was this translation helpful? Give feedback.
All reactions