← 返回命令列表

Linux command

jj-config-list 命令

文本

复制后可按需替换文件名、目录或参数。

常用示例

List all config values

jj config list

List user config only

jj config list --user

List repo config only

jj config list --repo

List with config source including overridden values

jj config list --include-overridden

List including default values

jj config list --include-defaults

List workspace-level config only

jj config list --workspace

List values using a custom template

jj config list -T [template]

说明

jj config list displays all Jujutsu configuration values. Shows merged configuration from all sources (user, repo, workspace) by default. Useful for debugging configuration issues and understanding effective settings. Available template fields: name (config name), value (TOML value), overridden (boolean), source (origin), path (config file path).

参数

--user
Show user configuration only.
--repo
Show repository configuration only.
--workspace
Show workspace configuration only.
--include-overridden
Include values overridden by higher-priority configs.
--include-defaults
Include default values in the output.
-T, --template _TEMPLATE_
Render output with a custom template.

FAQ

What is the jj-config-list command used for?

jj config list displays all Jujutsu configuration values. Shows merged configuration from all sources (user, repo, workspace) by default. Useful for debugging configuration issues and understanding effective settings. Available template fields: name (config name), value (TOML value), overridden (boolean), source (origin), path (config file path).

How do I run a basic jj-config-list example?

Run `jj config list` in a terminal, then adjust file names, paths, flags, or remote targets for your system.

What does --user do in jj-config-list?

Show user configuration only.