Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-14 00:20:50 +00:00
parent 366b13ffac
commit 2f0bb2e110
24 changed files with 260 additions and 33 deletions

29
tldr/jj-prev Normal file
View File

@@ -0,0 +1,29 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# jj prev
> Move the working-copy commit to a parent revision.
> More information: <https://jj-vcs.github.io/jj/latest/cli-reference/#jj-prev>.
- Move the working-copy commit to the previous parent revision:
`jj prev`
- Move the working-copy commit a number of revisions backward:
`jj prev {{offset}}`
- Edit the parent revision directly, instead of creating a new working-copy commit:
`jj prev {{[-e|--edit]}}`
- Create a new working-copy commit instead of editing the parent revision directly:
`jj prev {{[-n|--no-edit]}}`
- Jump to the previous conflicted parent:
`jj prev --conflict`