mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
23 lines
543 B
Plaintext
23 lines
543 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# jj config unset
|
|
|
|
> Unset a config option.
|
|
> See also: `jj config set`.
|
|
> More information: <https://docs.jj-vcs.dev/latest/cli-reference/#jj-config-unset>.
|
|
|
|
- Unset a config option in the user-level config:
|
|
|
|
`jj config {{[u|unset]}} --user {{name}}`
|
|
|
|
- Unset a config option in the repo-level config:
|
|
|
|
`jj config {{[u|unset]}} --repo {{name}}`
|
|
|
|
- Unset a config option in the workspace-level config:
|
|
|
|
`jj config {{[u|unset]}} --workspace {{name}}`
|