mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-05 10:26:41 +00:00
git: add rebase --root
notes
Some checks failed
Deploy to Github Pages / deploy (push) Has been cancelled
Some checks failed
Deploy to Github Pages / deploy (push) Has been cancelled
This commit is contained in:
parent
d0276b5473
commit
6c59f8261b
1 changed files with 1 additions and 0 deletions
|
@ -187,6 +187,7 @@ It's generally recommended creating annotated tags so it's possible to have all
|
||||||
`git merge --continue`: continue previous merge after solving a merge conflict
|
`git merge --continue`: continue previous merge after solving a merge conflict
|
||||||
`git rebase <branch>`: rebase current branch commits onto another branch
|
`git rebase <branch>`: rebase current branch commits onto another branch
|
||||||
`git rebase --onto <new-base> <old-base>`: rebase a slice of commits from `<old-base>` onto `<new-base>`
|
`git rebase --onto <new-base> <old-base>`: rebase a slice of commits from `<old-base>` onto `<new-base>`
|
||||||
|
`git rebase --onto <new-base> --root <old-base>`: rebase a slice of commits from `<old-base>` onto `<new-base>`, including the root commit
|
||||||
|
|
||||||
`git cherry-pick <commit>`: bring in a commit from another branch
|
`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)
|
`git cherry-pick <commit>..<commit>`: bring in a range of commits from another branch (first excluded)
|
||||||
|
|
Loading…
Add table
Reference in a new issue