LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

jj-help

display help for Jujutsu or a specific subcommand

TLDR

Show top-level help for `jj`
$ jj help
copy
Show help for a subcommand
$ jj help [log]
copy
Show help for a nested subcommand
$ jj help [git] [push]
copy
List available help keywords
$ jj help --help
copy
Show the revsets language
$ jj help -k revsets
copy
Show how and where to set configuration
$ jj help -k config
copy
Open the getting-started tutorial
$ jj help -k tutorial
copy

SYNOPSIS

jj help [-k KEYWORD] [COMMAND...]

DESCRIPTION

jj help prints the help text for jj itself or for the given subcommand(s). It is the same information as `jj [command] --help`, with extra pages for language topics that are not commands.`jj help --help` lists the keyword names. `jj help -k` then shows one of those topics: bookmarks (named pointers similar to Git branches), configuration files and options, filesets, the glossary, revsets, templates, and a tutorial. The CLI reference at docs.jj-vcs.dev is generated from the same help text but is not guaranteed to match `jj help` exactly; the local command is authoritative.

PARAMETERS

COMMAND

Print help for this subcommand. Repeat for nested commands (`jj help bookmark list`).
-k, --keyword KEYWORD
Show help for a conceptual topic instead of a command. Values: `bookmarks`, `config`, `filesets`, `glossary`, `revsets`, `templates`, `tutorial`.

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

Subcommand of jj. Keyword help is not a man page and is not opened in a browser. Nested command names must match the CLI (`jj help git remote add`, not a slash path). The published CLI reference is experimental and can differ from this command's output.

SEE ALSO

jj(1), jj-config(1), git-help(1)

RESOURCES

Copied to clipboard
Kai