alphacyberranger to Programmer [email protected]English • 2 years agoHistory repeats itselfimagemessage-square35arrow-up1498arrow-down113
arrow-up1485arrow-down1imageHistory repeats itselfalphacyberranger to Programmer [email protected]English • 2 years agomessage-square35
minus-square@[email protected]linkfedilink1•2 years ago“Reapply” is rewriting it on the other branch. The branch you are rebasing to now has a one or multiple commits that do not represent real history. Only the very last commit on the branch is actually what the user rebasing has on their computer.
minus-square@[email protected]linkfedilink2•2 years agoCherry picking also rewrites the commits. This is equivalent to rebasing: git branch -f orig_head git reset target git cherry-pick ..orig_head
“Reapply” is rewriting it on the other branch. The branch you are rebasing to now has a one or multiple commits that do not represent real history. Only the very last commit on the branch is actually what the user rebasing has on their computer.
Cherry picking also rewrites the commits. This is equivalent to rebasing:
git branch -f orig_head git reset target git cherry-pick ..orig_head