LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

jj-config-list

displays all Jujutsu configuration values

TLDR

List all config values
$ jj config list
copy
List user config only
$ jj config list --user
copy
List repo config only
$ jj config list --repo
copy
List with config source including overridden values
$ jj config list --include-overridden
copy
List including default values
$ jj config list --include-defaults
copy
List workspace-level config only
$ jj config list --workspace
copy
List values using a custom template
$ jj config list -T [template]
copy

SYNOPSIS

jj config list [options]

DESCRIPTION

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).

PARAMETERS

--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.

SEE ALSO

Copied to clipboard
Kai