mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-04 13:55:23 +02:00
29 lines
561 B
Markdown
29 lines
561 B
Markdown
![]() |
# jj resolve
|
||
|
|
||
|
> Resolve conflicted files with an external merge tool.
|
||
|
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-resolve>.
|
||
|
|
||
|
- Resolve all conflicts:
|
||
|
|
||
|
`jj resolve`
|
||
|
|
||
|
- List all conflicts:
|
||
|
|
||
|
`jj resolve {{[-l|--list]}}`
|
||
|
|
||
|
- Resolve conflicts in a given revision:
|
||
|
|
||
|
`jj resolve {{[-r|--revision]}} {{revset}}`
|
||
|
|
||
|
- Resolve conflicts in given files:
|
||
|
|
||
|
`jj resolve {{file1}} {{file2}} ...`
|
||
|
|
||
|
- Resolve accepting the incoming versions:
|
||
|
|
||
|
`jj resolve {{--tool}} :theirs`
|
||
|
|
||
|
- Resolve accepting the outgoing versions:
|
||
|
|
||
|
`jj resolve {{--tool}} :ours`
|