jj-config-set

sets configuration values in Jujutsu config files

TLDR

Set user config value
$ jj config set --user [user.name] "[John Doe]"
Set repo config value
$ jj config set --repo [key] "[value]"
Set user email
$ jj config set --user user.email "[[email protected]]"

SYNOPSIS

jj config set [options] name value

DESCRIPTION

jj config set sets configuration values in Jujutsu config files. User config applies globally while repo config applies only to the current repository. Values are stored in TOML format.

PARAMETERS

--user

Set in user configuration.
--repo
Set in repository configuration.

INSTALL

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

SEE ALSO

jj(1), jj-config-get(1), jj-config-unset(1)