Start situation (no unpushed changes, >
indicates the current branch):
o C [> master][origin/master]
|
o B
|
o A
|
...
After a git fetch
the log structure often looks like
o E [origin/master]
|
o C'
|
o B'
|
o D
|
| o C [>master]
| |
| o B
|/
o A
|
...
Now git rebase origin/master master
often produces conflicts. Is git pull --rebase
smarter and just uses git reset
to make master
also point to E
if master
==origin/master
initially?