git: refine reabse 'onto' notes

This commit is contained in:
Marcello 2024-05-06 10:26:12 +02:00
parent fa53e07972
commit 0907c48653
No known key found for this signature in database

View file

@ -190,7 +190,7 @@ It's generally recommended creating annotated tags so it's possible to have all
`git merge <branch-name>`: merges into current branch
`git merge --continue`: continue previous merge after solving a merge conflict
`git rebase <branch>`: rebase current branch commits onto another branch
`git rebase --onto <commit>`: rebase current branch commits onto another commit
`git rebase --onto <new-base> <old-base>`: rebase a slice of commits from `<old-base>` onto `<new-base>`
`git cherry-pick <commit>`: bring in a commit from another branch
`git cherry-pick <commit>..<commit>`: bring in a range of commits from another branch (first excluded)