LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

jj-config-path

displays the file system path to Jujutsu configuration files

TLDR

Show user config path
$ jj config path --user
copy
Show repo config path
$ jj config path --repo
copy

SYNOPSIS

jj config path [options]

DESCRIPTION

jj config path displays the file system path to Jujutsu configuration files. Useful for locating config files for manual editing, scripting, or troubleshooting. If the target config file does not yet exist, the command still prints the path where it would be created.

PARAMETERS

--user

Show user-level configuration file path (typically ~/.config/jj/config.toml).
--repo
Show repository-level configuration file path (.jj/repo/config.toml).
--help
Display help information.

INSTALL

sudo pacman -S jujutsu
copy
sudo apk add jujutsu
copy
sudo zypper install jujutsu
copy
brew install jujutsu
copy
nix profile install nixpkgs#jujutsu
copy

CAVEATS

Exactly one of --user or --repo must be specified. The --repo variant must be run from within a Jujutsu repository.

SEE ALSO

Copied to clipboard
Kai