Linux command
jj-config 命令
文本
复制后可按需替换文件名、目录或参数。
常用示例
List all config values
jj config list
Get specific config value
jj config get [user.name]
Set config value
jj config set --user [key] "[value]"
Edit config in editor
jj config edit --user
说明
jj config manages Jujutsu configuration. Supports user-level config (global) and repo-level config (per-repository). Configuration uses TOML format and controls settings like user identity, aliases, and UI preferences.
参数
- list
- List configuration values.
- get _name_
- Get a configuration value.
- set _name_ _value_
- Set a configuration value.
- unset _name_
- Remove a configuration value.
- edit
- Edit configuration in editor.
- path
- Show configuration file path.
FAQ
What is the jj-config command used for?
jj config manages Jujutsu configuration. Supports user-level config (global) and repo-level config (per-repository). Configuration uses TOML format and controls settings like user identity, aliases, and UI preferences.
How do I run a basic jj-config example?
Run `jj config list` in a terminal, then adjust file names, paths, flags, or remote targets for your system.
What does list do in jj-config?
List configuration values.