mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-11 13:47:22 +00:00
22 lines
502 B
Plaintext
22 lines
502 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jj describe
|
|
|
|
> Update the change description or other metadata.
|
|
> More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-describe>.
|
|
|
|
- Update the description of the current change:
|
|
|
|
`jj {{[desc|describe]}}`
|
|
|
|
- Update the description of given revsets:
|
|
|
|
`jj {{[desc|describe]}} {{revsets}}`
|
|
|
|
- Update the description to the given message:
|
|
|
|
`jj {{[desc|describe]}} {{[-m|--message]}} {{message}}`
|