mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
589 B
Plaintext
23 lines
589 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# git psykorebase
|
|
|
|
> Rebase a branch on top of another using a merge commit and only one conflict handling.
|
|
> Part of `git-extras`.
|
|
> More information: <https://manned.org/git-psykorebase>.
|
|
|
|
- Rebase the current branch on top of another using a merge commit and only one conflict handling:
|
|
|
|
`git psykorebase {{upstream_branch}}`
|
|
|
|
- Continue after conflicts have been handled:
|
|
|
|
`git psykorebase --continue`
|
|
|
|
- Specify the branch to rebase:
|
|
|
|
`git psykorebase {{upstream_branch}} {{target_branch}}`
|