mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-17 19:00:46 +00:00
Update cheatsheets
This commit is contained in:
29
tldr/jj-next
Normal file
29
tldr/jj-next
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# jj next
|
||||
|
||||
> Move the working-copy commit to a child revision.
|
||||
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-next>.
|
||||
|
||||
- Move the working-copy commit to the next child revision:
|
||||
|
||||
`jj next`
|
||||
|
||||
- Move the working-copy commit a number of revisions forward:
|
||||
|
||||
`jj next {{offset}}`
|
||||
|
||||
- Edit the child revision directly, instead of creating a new working-copy commit:
|
||||
|
||||
`jj next {{[-e|--edit]}}`
|
||||
|
||||
- Create a new working-copy commit instead of editing the child revision directly:
|
||||
|
||||
`jj next {{[-n|--no-edit]}}`
|
||||
|
||||
- Jump to the next conflicted child:
|
||||
|
||||
`jj next --conflict`
|
||||
Reference in New Issue
Block a user